10 lines
363 B
Plaintext
10 lines
363 B
Plaintext
<% if @api_key.errors.any? %>
|
|
Danbooru.error("<%= j @api_key.errors.full_messages.join(', ') %>");
|
|
<% else %>
|
|
$("#api-key").text("<%= j @api_key.key %>");
|
|
$("#api-key-created").html("<%= j compact_time @api_key.created_at %>");
|
|
$("#api-key-updated").html("<%= j compact_time @api_key.updated_at %>");
|
|
|
|
Danbooru.notice("API key regenerated.");
|
|
<% end %>
|