diff --git a/awx/api/views.py b/awx/api/views.py index b90c56ed42..f922a38244 100644 --- a/awx/api/views.py +++ b/awx/api/views.py @@ -120,7 +120,7 @@ class WorkflowsEnforcementMixin(object): Mixin to check that license supports workflows. ''' def check_permissions(self, request): - if not feature_enabled('workflows'): + if not feature_enabled('workflows') and request.method not in ('GET', 'OPTIONS'): raise LicenseForbids(_('Your license does not allow use of workflows.')) return super(WorkflowsEnforcementMixin, self).check_permissions(request)