diff --git a/awx/main/access.py b/awx/main/access.py index d2180cadaa..a33503920f 100644 --- a/awx/main/access.py +++ b/awx/main/access.py @@ -1320,8 +1320,10 @@ class SystemJobTemplateAccess(BaseAccess): model = SystemJobTemplate - def can_start(self, obj, validate_license=True): - return self.can_read(obj) + @check_superuser + def can_start(self, obj): + '''Only a superuser can start a job from a SystemJobTemplate''' + return False class SystemJobAccess(BaseAccess): '''