internetee-registry/app/models/registrant_user.rb
2015-05-14 18:02:31 +03:00

8 lines
166 B
Ruby

class RegistrantUser < User
attr_accessor :registrar_typeahead
def ability
@ability ||= Ability.new(self)
end
delegate :can?, :cannot?, to: :ability
end