This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-09-29 15:00:45 -07:00
|
|
|
class Api::V1::AppsController < ApiController
|
2016-09-26 14:55:21 -07:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def create
|
2016-09-29 15:03:08 -07:00
|
|
|
@app = Doorkeeper::Application.create!(name: params[:client_name], redirect_uri: params[:redirect_uris])
|
2016-09-26 14:55:21 -07:00
|
|
|
end
|
|
|
|
end
|