11 lines
263 B
Ruby
11 lines
263 B
Ruby
module Moderator
|
|
module InvitationsHelper
|
|
def level_select
|
|
choices = []
|
|
choices << ["Privileged", User::Levels::PRIVILEGED]
|
|
choices << ["Contributor", User::Levels::CONTRIBUTOR]
|
|
select(:invitation, :level, choices)
|
|
end
|
|
end
|
|
end
|