14 lines
142 B
Ruby
14 lines
142 B
Ruby
class GraphicsElementPolicy < ApplicationPolicy
|
|
def create?
|
|
true
|
|
end
|
|
|
|
def update?
|
|
true
|
|
end
|
|
|
|
def destroy?
|
|
true
|
|
end
|
|
end
|