added invites

This commit is contained in:
albert
2011-07-29 19:42:25 -04:00
parent c8afd34d15
commit 04103c3352
10 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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