From 2bd132d4581048a96b4d36b5a94e6749c68b8987 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Thu, 4 May 2017 12:12:44 -0400 Subject: Replace best_in_place editor on admin settings page (#2789) * Remove best_in_place * Replace best_in_place usage with rails helpers * Move admin/settings#index to #edit action * Remove click_to__edit from i18n --- lib/tasks/mastodon.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/tasks/mastodon.rake b/lib/tasks/mastodon.rake index 2ddf3c2f0..2cc1c29eb 100644 --- a/lib/tasks/mastodon.rake +++ b/lib/tasks/mastodon.rake @@ -22,7 +22,7 @@ namespace :mastodon do user = Account.find_local(ENV.fetch('USERNAME')).user user.update(admin: true) - puts "Congrats! #{user.account.username} is now an admin. \\o/\nNavigate to #{admin_settings_url} to get started" + puts "Congrats! #{user.account.username} is now an admin. \\o/\nNavigate to #{edit_admin_settings_url} to get started" end desc 'Manually confirms a user with associated user email address stored in USER_EMAIL environment variable.' -- cgit