From 6dba1392a29a003c3334259a222061f29ff04b13 Mon Sep 17 00:00:00 2001 From: elijah Date: Thu, 14 Jan 2016 16:14:39 -0800 Subject: added UI for invite codes --- app/controllers/invite_codes_controller.rb | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 app/controllers/invite_codes_controller.rb (limited to 'app/controllers') diff --git a/app/controllers/invite_codes_controller.rb b/app/controllers/invite_codes_controller.rb new file mode 100644 index 0000000..6a7fef3 --- /dev/null +++ b/app/controllers/invite_codes_controller.rb @@ -0,0 +1,35 @@ +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.all.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 -- cgit v1.2.3