19 lines
358 B
Ruby
19 lines
358 B
Ruby
module Limits
|
|
|
|
# band genres
|
|
MIN_GENRES_PER_BAND = 1
|
|
MAX_GENRES_PER_BAND = 3
|
|
|
|
# recording genres
|
|
MIN_GENRES_PER_RECORDING = 1
|
|
MAX_GENRES_PER_RECORDING = 3
|
|
|
|
# instruments
|
|
MIN_INSTRUMENTS_PER_MUSICIAN = 1
|
|
MAX_INSTRUMENTS_PER_MUSICIAN = 5
|
|
|
|
# users
|
|
USERS_CAN_INVITE = false # in BETA release, only first level users can invite others
|
|
|
|
end
|