mirror of
https://github.com/internetee/registry.git
synced 2025-08-24 18:20:52 +02:00
8 lines
166 B
Ruby
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
|