fix: #4022 Gifting someone a gold account shows "You are now a Builder level account."

This commit is contained in:
Albert Yi
2018-12-19 14:56:54 -08:00
parent 3e382bd831
commit 372338e0e5
2 changed files with 7 additions and 2 deletions

View File

@@ -54,6 +54,6 @@ class UserUpgradesController < ApplicationController
flash[:error] = e.message
end
redirect_to user_upgrade_path
redirect_to user_upgrade_path(user_id: params[:user_id])
end
end

View File

@@ -3,7 +3,12 @@
<% if flash[:success] %>
<h1>Congratulations!</h1>
<p>You are now a <%= CurrentUser.user.level_string %> level account. Thanks for supporting the site!</p>
<% if params[:user_id] %>
<p><%= user.name %> is now a <%= user.level_string %> level account. Thanks for supporting the site!</p>
<% else %>
<p>You are now a <%= user.level_string %> level account. Thanks for supporting the site!</p>
<% end %>
<p><%= link_to "Return to posts", posts_path %> </p>
<% elsif flash[:error] %>
<h1>An error occurred!</h1>