Skip to content

Commit

Permalink
renaming variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hkf-tech committed Aug 10, 2020
1 parent 11e56e9 commit 51d8105
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static string EmployerFinanceAction(this UrlHelper helper, string path)
public static string EmployerIncentivesAction(this UrlHelper helper)
{
var configuration = DependencyResolver.Current.GetService<EmployerAccountsConfiguration>();
var baseUrl = configuration.EmployerIncentivesUrl;
var baseUrl = configuration.EmployerIncentivesBaseUrl;
var hashedAccountId = helper.RequestContext.RouteData.Values[ControllerConstants.AccountHashedIdRouteKeyName];
return Action(baseUrl, hashedAccountId.ToString());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class EmployerAccountsConfiguration : ITopicMessagePublisherConfiguration
public string EmployerCommitmentsBaseUrl { get; set; }
public string EmployerCommitmentsV2BaseUrl { get; set; }
public string EmployerFinanceBaseUrl { get; set; }
public string EmployerIncentivesUrl { get; set; }
public string EmployerIncentivesBaseUrl { get; set; }
public string EmployerPortalBaseUrl { get; set; }
public string EmployerProjectionsBaseUrl { get; set; }
public string EmployerRecruitBaseUrl { get; set; }
Expand Down

0 comments on commit 51d8105

Please sign in to comment.