Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
Hire-Guru
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rishikumar
Hire-Guru
Commits
4d33d71c
Commit
4d33d71c
authored
Apr 07, 2026
by
AravindR-K
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed the congfig file error and added the render backend url
parent
8cf56935
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
Frontend/src/app/services/auth.service.ts
Frontend/src/app/services/auth.service.ts
+1
-1
Frontend/src/app/services/quiz.service.ts
Frontend/src/app/services/quiz.service.ts
+2
-2
Frontend/tsconfig.app.json
Frontend/tsconfig.app.json
+0
-1
No files found.
Frontend/src/app/services/auth.service.ts
View file @
4d33d71c
...
...
@@ -20,7 +20,7 @@ export interface AuthResponse {
providedIn
:
'
root
'
})
export
class
AuthService
{
private
apiUrl
=
'
http
://localhost:5000
/api/auth
'
;
private
apiUrl
=
'
http
s://quiz-master-b3zl.onrender.com
/api/auth
'
;
currentUser
=
signal
<
User
|
null
>
(
null
);
isLoggedIn
=
signal
<
boolean
>
(
false
);
...
...
Frontend/src/app/services/quiz.service.ts
View file @
4d33d71c
...
...
@@ -6,8 +6,8 @@ import { Observable } from 'rxjs';
providedIn
:
'
root
'
})
export
class
QuizService
{
private
adminUrl
=
'
http
://localhost:5000
/api/admin
'
;
private
studentUrl
=
'
http
://localhost:5000
/api/student
'
;
private
adminUrl
=
'
http
s://quiz-master-b3zl.onrender.com
/api/admin
'
;
private
studentUrl
=
'
http
s://quiz-master-b3zl.onrender.com
/api/student
'
;
constructor
(
private
http
:
HttpClient
)
{}
...
...
Frontend/tsconfig.app.json
View file @
4d33d71c
...
...
@@ -3,7 +3,6 @@
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"outDir"
:
"./out-tsc/app"
,
"types"
:
[]
},
"include"
:
[
"src/**/*.ts"
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment