Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Group17ProfileMicroservice
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Asif, Adiv (UG - Comp Sci & Elec Eng)
Group17ProfileMicroservice
Commits
e8c7fee7
Commit
e8c7fee7
authored
1 year ago
by
Adiv Asif
Browse files
Options
Downloads
Plain Diff
Merged PR 27: fixups
fixups
parents
b8f2ed66
7d6cbe89
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Models/ProfileDbContext.cs
+1
-1
1 addition, 1 deletion
Models/ProfileDbContext.cs
Settings/ConnectionStrings.cs
+2
-2
2 additions, 2 deletions
Settings/ConnectionStrings.cs
Settings/FrontendStrings.cs
+1
-1
1 addition, 1 deletion
Settings/FrontendStrings.cs
with
4 additions
and
4 deletions
Models/ProfileDbContext.cs
+
1
−
1
View file @
e8c7fee7
...
...
@@ -14,7 +14,7 @@ public class ProfileDbContext
{
RequestTimeout
=
TimeSpan
.
FromSeconds
(
30
)
};
var
connectionString
=
connectionStrings
.
Value
.
DbConnectionString
;
var
connectionString
=
connectionStrings
.
Value
.
DbConnectionString
??
"DbConnectionString"
;
var
client
=
new
CosmosClient
(
connectionString
,
clientOptions
);
var
database
=
client
.
GetDatabase
(
"ProfileDb"
);
_container
=
database
.
GetContainer
(
"Profile"
);
...
...
This diff is collapsed.
Click to expand it.
Settings/ConnectionStrings.cs
+
2
−
2
View file @
e8c7fee7
...
...
@@ -2,6 +2,6 @@
public
class
ConnectionStrings
{
public
string
?
DbConnectionString
{
get
;
set
;
}
public
string
?
AzureBlobStorage
{
get
;
set
;
}
public
string
?
DbConnectionString
{
get
;
set
;
}
=
""
;
public
string
?
AzureBlobStorage
{
get
;
set
;
}
=
""
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Settings/FrontendStrings.cs
+
1
−
1
View file @
e8c7fee7
...
...
@@ -2,5 +2,5 @@
public
class
FrontendStrings
{
public
string
?
BaseUrl
{
get
;
set
;
}
public
string
?
BaseUrl
{
get
;
set
;
}
=
""
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment