* Add ability for trusted users to suggest social copy for posts * Fix schema * Fix tests * Fix test
5 lines
90 B
Ruby
5 lines
90 B
Ruby
class BufferUpdatePolicy < ApplicationPolicy
|
|
def create?
|
|
user_is_trusted?
|
|
end
|
|
end
|