Skip to content

Commit

Permalink
pass account name to the factory
Browse files Browse the repository at this point in the history
  • Loading branch information
signedav committed Oct 29, 2024
1 parent 72eedcb commit 6bac817
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion QgisModelBaker/gui/workflow_wizard/project_creation_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,9 @@ def _create_project(self):
self.progress_bar.setValue(0)
return

res, message = db_factory.post_generate_project_validations(self.configuration)
res, message = db_factory.post_generate_project_validations(
self.configuration, QgsApplication.userLoginName()
)

if not res:
self.workflow_wizard.log_panel.txtStdout.setText(message)
Expand Down

0 comments on commit 6bac817

Please sign in to comment.