diff options
Diffstat (limited to 'awx/main/models/projects.py')
-rw-r--r-- | awx/main/models/projects.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/awx/main/models/projects.py b/awx/main/models/projects.py index a22973dd62..0a571194b0 100644 --- a/awx/main/models/projects.py +++ b/awx/main/models/projects.py @@ -259,6 +259,7 @@ class Project(UnifiedJobTemplate, ProjectOptions, ResourceMixin, CustomVirtualEn class Meta: app_label = 'main' ordering = ('id',) + permissions = [('update_project', 'Can run a project update'), ('use_project', 'Can use project in a job template')] default_environment = models.ForeignKey( 'ExecutionEnvironment', |