12 lines
290 B
Ruby
12 lines
290 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ExecutionEnvironmentPolicy < AdminOnlyPolicy
|
|
%i[execute_command? shell? statistics? show?].each do |action|
|
|
define_method(action) { admin? || author? }
|
|
end
|
|
|
|
[:index?].each do |action|
|
|
define_method(action) { admin? || teacher? }
|
|
end
|
|
end
|