jam-cloud/ruby/lib/jam_ruby/constants/limits.rb

22 lines
376 B
Ruby
Raw Permalink Normal View History

2012-11-24 18:22:44 +00:00
module Limits
# session genres
MIN_GENRES_PER_SESSION = 1
MAX_GENRES_PER_SESSION = 3
# band genres
2012-11-24 18:22:44 +00:00
MIN_GENRES_PER_BAND = 1
MAX_GENRES_PER_BAND = 3
# recording genres
MIN_GENRES_PER_RECORDING = 1
2013-02-16 21:10:45 +00:00
MAX_GENRES_PER_RECORDING = 1
# instruments
MIN_INSTRUMENTS_PER_MUSICIAN = 1
MAX_INSTRUMENTS_PER_MUSICIAN = 1000
2012-11-24 18:22:44 +00:00
# users
USERS_CAN_INVITE = true
end