mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 14:08:07 +01:00
Move nobody
position in UserRole
magic number to constant (#29465)
This commit is contained in:
parent
ec953bf378
commit
3389c41b58
2 changed files with 5 additions and 4 deletions
|
@ -39,6 +39,7 @@ class UserRole < ApplicationRecord
|
||||||
}.freeze
|
}.freeze
|
||||||
|
|
||||||
EVERYONE_ROLE_ID = -99
|
EVERYONE_ROLE_ID = -99
|
||||||
|
NOBODY_POSITION = -1
|
||||||
|
|
||||||
module Flags
|
module Flags
|
||||||
NONE = 0
|
NONE = 0
|
||||||
|
@ -104,7 +105,7 @@ class UserRole < ApplicationRecord
|
||||||
has_many :users, inverse_of: :role, foreign_key: 'role_id', dependent: :nullify
|
has_many :users, inverse_of: :role, foreign_key: 'role_id', dependent: :nullify
|
||||||
|
|
||||||
def self.nobody
|
def self.nobody
|
||||||
@nobody ||= UserRole.new(permissions: Flags::NONE, position: -1)
|
@nobody ||= UserRole.new(permissions: Flags::NONE, position: NOBODY_POSITION)
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.everyone
|
def self.everyone
|
||||||
|
@ -173,7 +174,7 @@ class UserRole < ApplicationRecord
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_position
|
def set_position
|
||||||
self.position = -1 if everyone?
|
self.position = NOBODY_POSITION if everyone?
|
||||||
end
|
end
|
||||||
|
|
||||||
def validate_own_role_edition
|
def validate_own_role_edition
|
||||||
|
|
|
@ -139,7 +139,7 @@ RSpec.describe UserRole do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'has negative position' do
|
it 'has negative position' do
|
||||||
expect(subject.position).to eq(-1)
|
expect(subject.position).to eq(described_class::NOBODY_POSITION)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -159,7 +159,7 @@ RSpec.describe UserRole do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'has negative position' do
|
it 'has negative position' do
|
||||||
expect(subject.position).to eq(-1)
|
expect(subject.position).to eq(described_class::NOBODY_POSITION)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue