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

10 lines
229 B
Ruby
Raw Normal View History

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