Files
danbooru/app/helpers/moderator/invitations_helper.rb
2011-07-29 19:42:25 -04:00

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