Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/keys_controller.rb')
-rw-r--r--app/controllers/keys_controller.rb38
1 files changed, 38 insertions, 0 deletions
diff --git a/app/controllers/keys_controller.rb b/app/controllers/keys_controller.rb
new file mode 100644
index 00000000000..003de6b301a
--- /dev/null
+++ b/app/controllers/keys_controller.rb
@@ -0,0 +1,38 @@
+class KeysController < ApplicationController
+ respond_to :js
+
+ def index
+ @keys = current_user.keys.all
+
+ respond_to do |format|
+ format.html # index.html.erb
+ format.json { render json: @keys }
+ end
+ end
+
+ def new
+ @key = current_user.keys.new
+
+ respond_with(@key)
+ end
+
+ def create
+ @key = current_user.keys.new(params[:key])
+ @key.save
+
+ respond_with(@key)
+ end
+
+ # DELETE /keys/1
+ # DELETE /keys/1.json
+ def destroy
+ @key = current_user.keys.find(params[:id])
+ @key.destroy
+
+ respond_to do |format|
+ format.html { redirect_to keys_url }
+ format.js { render :nothing => true }
+ format.json { head :ok }
+ end
+ end
+end