Method: Fixably::ActionPolicy#create!

Defined in:
lib/fixably/action_policy.rb

#create!Object

Raises:



16
17
18
19
20
21
22
23
# File 'lib/fixably/action_policy.rb', line 16

def create!
  return true if create?

  raise(
    UnsupportedError,
    "Fixably does not support creating #{resource_name}"
  )
end