gopad 1.12.2 → 1.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +27 -0
  3. data/README.md +3 -3
  4. data/lib/gopad/api/auth_api.rb +99 -47
  5. data/lib/gopad/api/{team_api.rb → group_api.rb} +175 -185
  6. data/lib/gopad/api/profile_api.rb +12 -12
  7. data/lib/gopad/api/user_api.rb +99 -109
  8. data/lib/gopad/configuration.rb +0 -7
  9. data/lib/gopad/models/{users.rb → create_group_request.rb} +19 -17
  10. data/lib/gopad/models/create_user_request.rb +258 -0
  11. data/lib/gopad/models/{teams.rb → delete_group_from_user_request.rb} +20 -20
  12. data/lib/gopad/models/{team_users.rb → delete_user_from_group_request.rb} +20 -27
  13. data/lib/gopad/models/{team.rb → group.rb} +9 -17
  14. data/lib/gopad/models/{user_team_params.rb → list_group_users200_response.rb} +61 -58
  15. data/lib/gopad/models/list_groups200_response.rb +260 -0
  16. data/lib/gopad/models/list_providers200_response.rb +236 -0
  17. data/lib/gopad/models/{team_user_params.rb → list_user_groups200_response.rb} +59 -56
  18. data/lib/gopad/models/list_users200_response.rb +260 -0
  19. data/lib/gopad/models/{auth_login.rb → login_auth_request.rb} +4 -3
  20. data/lib/gopad/models/permit_group_user_request.rb +232 -0
  21. data/lib/gopad/models/permit_user_group_request.rb +232 -0
  22. data/lib/gopad/models/profile.rb +8 -8
  23. data/lib/gopad/models/{user_teams.rb → provider.rb} +28 -21
  24. data/lib/gopad/models/update_profile_request.rb +238 -0
  25. data/lib/gopad/models/update_user_request.rb +254 -0
  26. data/lib/gopad/models/user.rb +5 -13
  27. data/lib/gopad/models/{user_team.rb → user_group.rb} +22 -22
  28. data/lib/gopad/version.rb +1 -1
  29. data/lib/gopad.rb +18 -10
  30. metadata +20 -12
@@ -12,15 +12,14 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Gopad
15
- # Model to represent list of users
16
- class Users
17
- attr_accessor :total, :users
15
+ class CreateGroupRequest
16
+ attr_accessor :slug, :name
18
17
 
19
18
  # Attribute mapping from ruby-style variable name to JSON key.
20
19
  def self.attribute_map
21
20
  {
22
- total: :total,
23
- users: :users
21
+ slug: :slug,
22
+ name: :name
24
23
  }
25
24
  end
26
25
 
@@ -32,14 +31,16 @@ module Gopad
32
31
  # Attribute type mapping.
33
32
  def self.openapi_types
34
33
  {
35
- total: :Integer,
36
- users: :'Array<User>'
34
+ slug: :String,
35
+ name: :String
37
36
  }
38
37
  end
39
38
 
40
39
  # List of attributes with nullable: true
41
40
  def self.openapi_nullable
42
- Set.new([
41
+ Set.new(%i[
42
+ slug
43
+ name
43
44
  ])
44
45
  end
45
46
 
@@ -47,24 +48,25 @@ module Gopad
47
48
  # @param [Hash] attributes Model attributes in the form of hash
48
49
  def initialize(attributes = {})
49
50
  unless attributes.is_a?(Hash)
50
- raise ArgumentError, 'The input argument (attributes) must be a hash in `Gopad::Users` initialize method'
51
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Gopad::CreateGroupRequest` initialize method'
51
52
  end
52
53
 
53
54
  # check to see if the attribute exists and convert string to symbol for hash key
54
55
  attributes = attributes.each_with_object({}) do |(k, v), h|
55
56
  unless self.class.attribute_map.key?(k.to_sym)
56
- raise ArgumentError, "`#{k}` is not a valid attribute in `Gopad::Users`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
57
+ raise ArgumentError,
58
+ "`#{k}` is not a valid attribute in `Gopad::CreateGroupRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
57
59
  end
58
60
 
59
61
  h[k.to_sym] = v
60
62
  end
61
63
 
62
- if attributes.key?(:total)
63
- self.total = attributes[:total]
64
+ if attributes.key?(:slug)
65
+ self.slug = attributes[:slug]
64
66
  end
65
67
 
66
- if attributes.key?(:users) && (value = attributes[:users]).is_a?(Array)
67
- self.users = value
68
+ if attributes.key?(:name)
69
+ self.name = attributes[:name]
68
70
  end
69
71
  end
70
72
 
@@ -88,8 +90,8 @@ module Gopad
88
90
  return true if equal?(other)
89
91
 
90
92
  self.class == other.class &&
91
- total == other.total &&
92
- users == other.users
93
+ slug == other.slug &&
94
+ name == other.name
93
95
  end
94
96
 
95
97
  # @see the `==` method
@@ -101,7 +103,7 @@ module Gopad
101
103
  # Calculates hash code according to all attributes.
102
104
  # @return [Integer] Hash code
103
105
  def hash
104
- [total, users].hash
106
+ [slug, name].hash
105
107
  end
106
108
 
107
109
  # Builds the object from hash
@@ -0,0 +1,258 @@
1
+ # Gopad OpenAPI
2
+ #
3
+ # API definition for Gopad, Etherpad for markdown with go
4
+ #
5
+ # The version of the OpenAPI document: 1.0.0-alpha1
6
+ # Contact: gopad@webhippie.de
7
+ # Generated by: https://openapi-generator.tech
8
+ # Generator version: 7.6.0
9
+ #
10
+
11
+ require 'date'
12
+ require 'time'
13
+
14
+ module Gopad
15
+ class CreateUserRequest
16
+ attr_accessor :username, :password, :email, :fullname, :admin, :active
17
+
18
+ # Attribute mapping from ruby-style variable name to JSON key.
19
+ def self.attribute_map
20
+ {
21
+ username: :username,
22
+ password: :password,
23
+ email: :email,
24
+ fullname: :fullname,
25
+ admin: :admin,
26
+ active: :active
27
+ }
28
+ end
29
+
30
+ # Returns all the JSON keys this model knows about
31
+ def self.acceptable_attributes
32
+ attribute_map.values
33
+ end
34
+
35
+ # Attribute type mapping.
36
+ def self.openapi_types
37
+ {
38
+ username: :String,
39
+ password: :String,
40
+ email: :String,
41
+ fullname: :String,
42
+ admin: :Boolean,
43
+ active: :Boolean
44
+ }
45
+ end
46
+
47
+ # List of attributes with nullable: true
48
+ def self.openapi_nullable
49
+ Set.new(%i[
50
+ username
51
+ password
52
+ email
53
+ fullname
54
+ admin
55
+ active
56
+ ])
57
+ end
58
+
59
+ # Initializes the object
60
+ # @param [Hash] attributes Model attributes in the form of hash
61
+ def initialize(attributes = {})
62
+ unless attributes.is_a?(Hash)
63
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Gopad::CreateUserRequest` initialize method'
64
+ end
65
+
66
+ # check to see if the attribute exists and convert string to symbol for hash key
67
+ attributes = attributes.each_with_object({}) do |(k, v), h|
68
+ unless self.class.attribute_map.key?(k.to_sym)
69
+ raise ArgumentError,
70
+ "`#{k}` is not a valid attribute in `Gopad::CreateUserRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
71
+ end
72
+
73
+ h[k.to_sym] = v
74
+ end
75
+
76
+ if attributes.key?(:username)
77
+ self.username = attributes[:username]
78
+ end
79
+
80
+ if attributes.key?(:password)
81
+ self.password = attributes[:password]
82
+ end
83
+
84
+ if attributes.key?(:email)
85
+ self.email = attributes[:email]
86
+ end
87
+
88
+ if attributes.key?(:fullname)
89
+ self.fullname = attributes[:fullname]
90
+ end
91
+
92
+ self.admin = if attributes.key?(:admin)
93
+ attributes[:admin]
94
+ else
95
+ false
96
+ end
97
+
98
+ self.active = if attributes.key?(:active)
99
+ attributes[:active]
100
+ else
101
+ true
102
+ end
103
+ end
104
+
105
+ # Show invalid properties with the reasons. Usually used together with valid?
106
+ # @return Array for valid properties with the reasons
107
+ def list_invalid_properties
108
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
109
+ []
110
+ end
111
+
112
+ # Check to see if the all the properties in the model are valid
113
+ # @return true if the model is valid
114
+ def valid?
115
+ warn '[DEPRECATED] the `valid?` method is obsolete'
116
+ true
117
+ end
118
+
119
+ # Checks equality by comparing each attribute.
120
+ # @param [Object] Object to be compared
121
+ def ==(other)
122
+ return true if equal?(other)
123
+
124
+ self.class == other.class &&
125
+ username == other.username &&
126
+ password == other.password &&
127
+ email == other.email &&
128
+ fullname == other.fullname &&
129
+ admin == other.admin &&
130
+ active == other.active
131
+ end
132
+
133
+ # @see the `==` method
134
+ # @param [Object] Object to be compared
135
+ def eql?(other)
136
+ self == other
137
+ end
138
+
139
+ # Calculates hash code according to all attributes.
140
+ # @return [Integer] Hash code
141
+ def hash
142
+ [username, password, email, fullname, admin, active].hash
143
+ end
144
+
145
+ # Builds the object from hash
146
+ # @param [Hash] attributes Model attributes in the form of hash
147
+ # @return [Object] Returns the model itself
148
+ def self.build_from_hash(attributes)
149
+ return nil unless attributes.is_a?(Hash)
150
+
151
+ attributes = attributes.transform_keys(&:to_sym)
152
+ transformed_hash = {}
153
+ openapi_types.each_pair do |key, type|
154
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
155
+ transformed_hash[key.to_s] = nil
156
+ elsif type =~ /\AArray<(.*)>/i
157
+ # check to ensure the input is an array given that the attribute
158
+ # is documented as an array but the input is not
159
+ if attributes[attribute_map[key]].is_a?(Array)
160
+ transformed_hash[key.to_s] = attributes[attribute_map[key]].map { |v| _deserialize(::Regexp.last_match(1), v) }
161
+ end
162
+ elsif !attributes[attribute_map[key]].nil?
163
+ transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
164
+ end
165
+ end
166
+ new(transformed_hash)
167
+ end
168
+
169
+ # Deserializes the data based on type
170
+ # @param string type Data type
171
+ # @param string value Value to be deserialized
172
+ # @return [Object] Deserialized data
173
+ def self._deserialize(type, value)
174
+ case type.to_sym
175
+ when :Time
176
+ Time.parse(value)
177
+ when :Date
178
+ Date.parse(value)
179
+ when :String
180
+ value.to_s
181
+ when :Integer
182
+ value.to_i
183
+ when :Float
184
+ value.to_f
185
+ when :Boolean
186
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
187
+ true
188
+ else
189
+ false
190
+ end
191
+ when :Object
192
+ # generic object (usually a Hash), return directly
193
+ value
194
+ when /\AArray<(?<inner_type>.+)>\z/
195
+ inner_type = Regexp.last_match[:inner_type]
196
+ value.map { |v| _deserialize(inner_type, v) }
197
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
198
+ k_type = Regexp.last_match[:k_type]
199
+ v_type = Regexp.last_match[:v_type]
200
+ {}.tap do |hash|
201
+ value.each do |k, v|
202
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
203
+ end
204
+ end
205
+ else # model
206
+ # models (e.g. Pet) or oneOf
207
+ klass = Gopad.const_get(type)
208
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
209
+ end
210
+ end
211
+
212
+ # Returns the string representation of the object
213
+ # @return [String] String presentation of the object
214
+ def to_s
215
+ to_hash.to_s
216
+ end
217
+
218
+ # to_body is an alias to to_hash (backward compatibility)
219
+ # @return [Hash] Returns the object in the form of hash
220
+ def to_body
221
+ to_hash
222
+ end
223
+
224
+ # Returns the object in the form of hash
225
+ # @return [Hash] Returns the object in the form of hash
226
+ def to_hash
227
+ hash = {}
228
+ self.class.attribute_map.each_pair do |attr, param|
229
+ value = send(attr)
230
+ if value.nil?
231
+ is_nullable = self.class.openapi_nullable.include?(attr)
232
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
233
+ end
234
+
235
+ hash[param] = _to_hash(value)
236
+ end
237
+ hash
238
+ end
239
+
240
+ # Outputs non-array value in the form of hash
241
+ # For object, use to_hash. Otherwise, just return the value
242
+ # @param [Object] value Any valid value
243
+ # @return [Hash] Returns the value in the form of hash
244
+ def _to_hash(value)
245
+ if value.is_a?(Array)
246
+ value.compact.map { |v| _to_hash(v) }
247
+ elsif value.is_a?(Hash)
248
+ {}.tap do |hash|
249
+ value.each { |k, v| hash[k] = _to_hash(v) }
250
+ end
251
+ elsif value.respond_to? :to_hash
252
+ value.to_hash
253
+ else
254
+ value
255
+ end
256
+ end
257
+ end
258
+ end
@@ -12,15 +12,13 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Gopad
15
- # Model to represent list of teams
16
- class Teams
17
- attr_accessor :total, :teams
15
+ class DeleteGroupFromUserRequest
16
+ attr_accessor :user
18
17
 
19
18
  # Attribute mapping from ruby-style variable name to JSON key.
20
19
  def self.attribute_map
21
20
  {
22
- total: :total,
23
- teams: :teams
21
+ user: :user
24
22
  }
25
23
  end
26
24
 
@@ -32,8 +30,7 @@ module Gopad
32
30
  # Attribute type mapping.
33
31
  def self.openapi_types
34
32
  {
35
- total: :Integer,
36
- teams: :'Array<Team>'
33
+ user: :String
37
34
  }
38
35
  end
39
36
 
@@ -47,38 +44,42 @@ module Gopad
47
44
  # @param [Hash] attributes Model attributes in the form of hash
48
45
  def initialize(attributes = {})
49
46
  unless attributes.is_a?(Hash)
50
- raise ArgumentError, 'The input argument (attributes) must be a hash in `Gopad::Teams` initialize method'
47
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Gopad::DeleteGroupFromUserRequest` initialize method'
51
48
  end
52
49
 
53
50
  # check to see if the attribute exists and convert string to symbol for hash key
54
51
  attributes = attributes.each_with_object({}) do |(k, v), h|
55
52
  unless self.class.attribute_map.key?(k.to_sym)
56
- raise ArgumentError, "`#{k}` is not a valid attribute in `Gopad::Teams`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
53
+ raise ArgumentError,
54
+ "`#{k}` is not a valid attribute in `Gopad::DeleteGroupFromUserRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
57
55
  end
58
56
 
59
57
  h[k.to_sym] = v
60
58
  end
61
59
 
62
- if attributes.key?(:total)
63
- self.total = attributes[:total]
64
- end
65
-
66
- if attributes.key?(:teams) && (value = attributes[:teams]).is_a?(Array)
67
- self.teams = value
68
- end
60
+ self.user = if attributes.key?(:user)
61
+ attributes[:user]
62
+ end
69
63
  end
70
64
 
71
65
  # Show invalid properties with the reasons. Usually used together with valid?
72
66
  # @return Array for valid properties with the reasons
73
67
  def list_invalid_properties
74
68
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
75
- []
69
+ invalid_properties = []
70
+ if @user.nil?
71
+ invalid_properties.push('invalid value for "user", user cannot be nil.')
72
+ end
73
+
74
+ invalid_properties
76
75
  end
77
76
 
78
77
  # Check to see if the all the properties in the model are valid
79
78
  # @return true if the model is valid
80
79
  def valid?
81
80
  warn '[DEPRECATED] the `valid?` method is obsolete'
81
+ return false if @user.nil?
82
+
82
83
  true
83
84
  end
84
85
 
@@ -88,8 +89,7 @@ module Gopad
88
89
  return true if equal?(other)
89
90
 
90
91
  self.class == other.class &&
91
- total == other.total &&
92
- teams == other.teams
92
+ user == other.user
93
93
  end
94
94
 
95
95
  # @see the `==` method
@@ -101,7 +101,7 @@ module Gopad
101
101
  # Calculates hash code according to all attributes.
102
102
  # @return [Integer] Hash code
103
103
  def hash
104
- [total, teams].hash
104
+ [user].hash
105
105
  end
106
106
 
107
107
  # Builds the object from hash
@@ -12,16 +12,13 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Gopad
15
- # Model to represent team users
16
- class TeamUsers
17
- attr_accessor :team, :total, :users
15
+ class DeleteUserFromGroupRequest
16
+ attr_accessor :group
18
17
 
19
18
  # Attribute mapping from ruby-style variable name to JSON key.
20
19
  def self.attribute_map
21
20
  {
22
- team: :team,
23
- total: :total,
24
- users: :users
21
+ group: :group
25
22
  }
26
23
  end
27
24
 
@@ -33,9 +30,7 @@ module Gopad
33
30
  # Attribute type mapping.
34
31
  def self.openapi_types
35
32
  {
36
- team: :Team,
37
- total: :Integer,
38
- users: :'Array<UserTeam>'
33
+ group: :String
39
34
  }
40
35
  end
41
36
 
@@ -49,42 +44,42 @@ module Gopad
49
44
  # @param [Hash] attributes Model attributes in the form of hash
50
45
  def initialize(attributes = {})
51
46
  unless attributes.is_a?(Hash)
52
- raise ArgumentError, 'The input argument (attributes) must be a hash in `Gopad::TeamUsers` initialize method'
47
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Gopad::DeleteUserFromGroupRequest` initialize method'
53
48
  end
54
49
 
55
50
  # check to see if the attribute exists and convert string to symbol for hash key
56
51
  attributes = attributes.each_with_object({}) do |(k, v), h|
57
52
  unless self.class.attribute_map.key?(k.to_sym)
58
- raise ArgumentError, "`#{k}` is not a valid attribute in `Gopad::TeamUsers`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
53
+ raise ArgumentError,
54
+ "`#{k}` is not a valid attribute in `Gopad::DeleteUserFromGroupRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
59
55
  end
60
56
 
61
57
  h[k.to_sym] = v
62
58
  end
63
59
 
64
- if attributes.key?(:team)
65
- self.team = attributes[:team]
66
- end
67
-
68
- if attributes.key?(:total)
69
- self.total = attributes[:total]
70
- end
71
-
72
- if attributes.key?(:users) && (value = attributes[:users]).is_a?(Array)
73
- self.users = value
74
- end
60
+ self.group = if attributes.key?(:group)
61
+ attributes[:group]
62
+ end
75
63
  end
76
64
 
77
65
  # Show invalid properties with the reasons. Usually used together with valid?
78
66
  # @return Array for valid properties with the reasons
79
67
  def list_invalid_properties
80
68
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
81
- []
69
+ invalid_properties = []
70
+ if @group.nil?
71
+ invalid_properties.push('invalid value for "group", group cannot be nil.')
72
+ end
73
+
74
+ invalid_properties
82
75
  end
83
76
 
84
77
  # Check to see if the all the properties in the model are valid
85
78
  # @return true if the model is valid
86
79
  def valid?
87
80
  warn '[DEPRECATED] the `valid?` method is obsolete'
81
+ return false if @group.nil?
82
+
88
83
  true
89
84
  end
90
85
 
@@ -94,9 +89,7 @@ module Gopad
94
89
  return true if equal?(other)
95
90
 
96
91
  self.class == other.class &&
97
- team == other.team &&
98
- total == other.total &&
99
- users == other.users
92
+ group == other.group
100
93
  end
101
94
 
102
95
  # @see the `==` method
@@ -108,7 +101,7 @@ module Gopad
108
101
  # Calculates hash code according to all attributes.
109
102
  # @return [Integer] Hash code
110
103
  def hash
111
- [team, total, users].hash
104
+ [group].hash
112
105
  end
113
106
 
114
107
  # Builds the object from hash
@@ -12,9 +12,9 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Gopad
15
- # Model to represent team
16
- class Team
17
- attr_accessor :id, :slug, :name, :created_at, :updated_at, :users
15
+ # Model to represent group
16
+ class Group
17
+ attr_accessor :id, :slug, :name, :created_at, :updated_at
18
18
 
19
19
  # Attribute mapping from ruby-style variable name to JSON key.
20
20
  def self.attribute_map
@@ -23,8 +23,7 @@ module Gopad
23
23
  slug: :slug,
24
24
  name: :name,
25
25
  created_at: :created_at,
26
- updated_at: :updated_at,
27
- users: :users
26
+ updated_at: :updated_at
28
27
  }
29
28
  end
30
29
 
@@ -40,8 +39,7 @@ module Gopad
40
39
  slug: :String,
41
40
  name: :String,
42
41
  created_at: :Time,
43
- updated_at: :Time,
44
- users: :'Array<UserTeam>'
42
+ updated_at: :Time
45
43
  }
46
44
  end
47
45
 
@@ -50,7 +48,6 @@ module Gopad
50
48
  Set.new(%i[
51
49
  slug
52
50
  name
53
- users
54
51
  ])
55
52
  end
56
53
 
@@ -58,13 +55,13 @@ module Gopad
58
55
  # @param [Hash] attributes Model attributes in the form of hash
59
56
  def initialize(attributes = {})
60
57
  unless attributes.is_a?(Hash)
61
- raise ArgumentError, 'The input argument (attributes) must be a hash in `Gopad::Team` initialize method'
58
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Gopad::Group` initialize method'
62
59
  end
63
60
 
64
61
  # check to see if the attribute exists and convert string to symbol for hash key
65
62
  attributes = attributes.each_with_object({}) do |(k, v), h|
66
63
  unless self.class.attribute_map.key?(k.to_sym)
67
- raise ArgumentError, "`#{k}` is not a valid attribute in `Gopad::Team`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
+ raise ArgumentError, "`#{k}` is not a valid attribute in `Gopad::Group`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
68
65
  end
69
66
 
70
67
  h[k.to_sym] = v
@@ -89,10 +86,6 @@ module Gopad
89
86
  if attributes.key?(:updated_at)
90
87
  self.updated_at = attributes[:updated_at]
91
88
  end
92
-
93
- if attributes.key?(:users) && (value = attributes[:users]).is_a?(Array)
94
- self.users = value
95
- end
96
89
  end
97
90
 
98
91
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -119,8 +112,7 @@ module Gopad
119
112
  slug == other.slug &&
120
113
  name == other.name &&
121
114
  created_at == other.created_at &&
122
- updated_at == other.updated_at &&
123
- users == other.users
115
+ updated_at == other.updated_at
124
116
  end
125
117
 
126
118
  # @see the `==` method
@@ -132,7 +124,7 @@ module Gopad
132
124
  # Calculates hash code according to all attributes.
133
125
  # @return [Integer] Hash code
134
126
  def hash
135
- [id, slug, name, created_at, updated_at, users].hash
127
+ [id, slug, name, created_at, updated_at].hash
136
128
  end
137
129
 
138
130
  # Builds the object from hash