This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/app/controllers/admin/api_controller.rb

11 lines
222 B
Ruby
Raw Normal View History

2013-03-25 18:04:28 -07:00
class Admin::ApiController < Admin::AdminController
def index
render json: {key: SiteSetting.api_key}
end
def generate_key
SiteSetting.generate_api_key!
render json: {key: SiteSetting.api_key}
end
end