blob: 9b5997dce723d2fc3d11baf77517edb8ac632c59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
module V1
class UsersController < ApplicationController
skip_before_filter :verify_authenticity_token
before_filter :authorize, :only => [:update]
respond_to :json
def create
@user = User.create(params[:user])
respond_with @user # return ID instead?
end
def update
# For now, only allow public key to be updated via the API. Eventually we might want to store in a config what attributes can be updated via the API.
@user = User.find_by_param(params[:id])
@user.update_attributes(:public_key => params[:user][:public_key])
respond_with @user
end
end
end
|