From 2e8e4e78310c64540eebe698ab57920070d68eae Mon Sep 17 00:00:00 2001 From: Toks Date: Fri, 15 Aug 2014 18:13:39 -0400 Subject: [PATCH] fix basic members not being able to make api keys --- app/controllers/api_keys_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api_keys_controller.rb b/app/controllers/api_keys_controller.rb index 2e6596f7e..706ccdc43 100644 --- a/app/controllers/api_keys_controller.rb +++ b/app/controllers/api_keys_controller.rb @@ -1,5 +1,5 @@ class ApiKeysController < ApplicationController - before_filter :gold_only + before_filter :member_only def new @api_key = ApiKey.new(:user_id => CurrentUser.user.id)