mirror of
https://github.com/discourse/discourse.git
synced 2026-08-13 06:25:11 -05:00
REFACTOR: Change watch wording to unignore (#7112)
* REFACTOR: Change `watch` wording to `unignore`
This commit is contained in:
@@ -637,7 +637,7 @@ en:
|
||||
private_message: "Message"
|
||||
private_messages: "Messages"
|
||||
ignore: "Ignore"
|
||||
watch: "Watch"
|
||||
unignore: "Unignore"
|
||||
activity_stream: "Activity"
|
||||
preferences: "Preferences"
|
||||
profile_hidden: "This user's public profile is hidden."
|
||||
|
||||
+1
-1
@@ -422,7 +422,7 @@ Discourse::Application.routes.draw do
|
||||
get "#{root_path}/:username/staff-info" => "users#staff_info", constraints: { username: RouteFormat.username }
|
||||
get "#{root_path}/:username/summary" => "users#summary", constraints: { username: RouteFormat.username }
|
||||
put "#{root_path}/:username/ignore" => "users#ignore", constraints: { username: RouteFormat.username }
|
||||
delete "#{root_path}/:username/ignore" => "users#watch", constraints: { username: RouteFormat.username }
|
||||
delete "#{root_path}/:username/ignore" => "users#unignore", constraints: { username: RouteFormat.username }
|
||||
get "#{root_path}/:username/invited" => "users#invited", constraints: { username: RouteFormat.username }
|
||||
get "#{root_path}/:username/invited_count" => "users#invited_count", constraints: { username: RouteFormat.username }
|
||||
get "#{root_path}/:username/invited/:filter" => "users#invited", constraints: { username: RouteFormat.username }
|
||||
|
||||
Reference in New Issue
Block a user