Skip to content

Commit

Permalink
make all ltsa options configurable via environment variables. (#2667) (
Browse files Browse the repository at this point in the history
…#2684)

* make all ltsa options configurable via environment variables. (#2667)

* increment version number.
  • Loading branch information
devinleighsmith authored Jan 19, 2023
1 parent af7563a commit f67be07
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions source/backend/api/Pims.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<UserSecretsId>0ef6255f-9ea0-49ec-8c65-c172304b4926</UserSecretsId>
<Version>3.0.0-42.20</Version>
<Version>3.0.0-42.20</Version>
<AssemblyVersion>3.0.0.42</AssemblyVersion>
<Version>3.0.1-42.20</Version>
<Version>3.0.1-42.20</Version>
<AssemblyVersion>3.0.1.42</AssemblyVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ProjectGuid>16BC0468-78F6-4C91-87DA-7403C919E646</ProjectGuid>
</PropertyGroup>
Expand Down
12 changes: 6 additions & 6 deletions source/backend/ltsa/Configuration/LtsaOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,31 @@ public class LtsaOptions
/// <summary>
/// get/set - The URI to the Ltsa API service.
/// </summary>
public string HostUri { get; } = "https://tduat-x42b.ltsa.ca/titledirect/search/api";
public string HostUri { get; set; } = "https://tduat-x42b.ltsa.ca/titledirect/search/api";

/// <summary>
/// get/set - API endpoint for title summaries endpoint
/// </summary>
public string TitleSummariesEndpoint { get; } = "titleSummaries";
public string TitleSummariesEndpoint { get; set; } = "titleSummaries";
/// <summary>
/// get/set - API endpoint for orders endpoint
/// </summary>
public string OrdersEndpoint { get; } = "orders";
public string OrdersEndpoint { get; set; } = "orders";

/// <summary>
/// get/set - API root url for auth requests
/// </summary>
public string AuthUrl { get; } = "https://appsuat.ltsa.ca/iam/api/auth";
public string AuthUrl { get; set; } = "https://appsuat.ltsa.ca/iam/api/auth";

/// <summary>
/// get/set - API endpoint for auth refresh token endpoint
/// </summary>
public string RefreshEndpoint { get; } = "token";
public string RefreshEndpoint { get; set; } = "token";

/// <summary>
/// get/set - API endpoint for integrator login
/// </summary>
public string LoginIntegratorEndpoint { get; } = "login/integrator";
public string LoginIntegratorEndpoint { get; set; } = "login/integrator";

/// <summary>
/// get/set - Integrator Username.
Expand Down
2 changes: 1 addition & 1 deletion source/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "3.0.0-42.20",
"version": "3.0.1-42.20",
"private": true,
"dependencies": {
"@bcgov/bc-sans": "1.0.1",
Expand Down

0 comments on commit f67be07

Please sign in to comment.