10 lines
144 B
Ruby
10 lines
144 B
Ruby
class Captain::Lifecycle::ConfigPolicy < ApplicationPolicy
|
|
def show?
|
|
true
|
|
end
|
|
|
|
def update?
|
|
@account_user.administrator?
|
|
end
|
|
end
|