blob: 96836eea39dbe6e5010e769307daa86362d32c38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
class InviteCodesController < ApplicationController
respond_to :html
before_filter :require_login
before_filter :require_admin
before_filter :fetch_invite, only: :destroy
def index
@invite = InviteCode.new # for the creation form.
@invites = InviteCode.by_updated_at.descending.
page(params[:page]).
per(APP_CONFIG[:pagination_size])
respond_with @invites
end
def create
@invite = InviteCode.new(params[:invite_code])
@invite.save # throws exception on error (!)
flash[:success] = t('created') + " #{@invite.invite_code}"
rescue
flash[:error] = "could not save invite code" # who knows why, invite.errors is empty
ensure
redirect_to invite_codes_path
end
def destroy
@invite.destroy
redirect_to invite_codes_path
end
protected
def fetch_invite
@invite = InviteCode.find(params[:id])
end
end
|