Method: Forgejo::Permission#initialize
- Defined in:
- lib/forgejo/models/permission.rb
#initialize(attributes = {}) ⇒ Permission
Initializes the object
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/forgejo/models/permission.rb', line 61 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `Forgejo::Permission` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key acceptable_attribute_map = self.class.acceptable_attribute_map attributes = attributes.each_with_object({}) { |(k, v), h| if (!acceptable_attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `Forgejo::Permission`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'admin') self.admin = attributes[:'admin'] end if attributes.key?(:'pull') self.pull = attributes[:'pull'] end if attributes.key?(:'push') self.push = attributes[:'push'] end end |