mastodon/app/controllers/api/v1/apps_controller.rb

10 lines
229 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-09-29 22:00:45 +00:00
class Api::V1::AppsController < ApiController
respond_to :json
def create
2016-09-29 22:03:08 +00:00
@app = Doorkeeper::Application.create!(name: params[:client_name], redirect_uri: params[:redirect_uris])
end
end