Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
detb-client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hugo BAYOUD
detb-client
Merge requests
!1
Resolve "[FRONT] Créer la page : choix des bars"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "[FRONT] Créer la page : choix des bars"
1-front-creer-la-page-choix-des-bars
into
master
Overview
0
Commits
8
Pipelines
0
Changes
10
Merged
Hugo BAYOUD
requested to merge
1-front-creer-la-page-choix-des-bars
into
master
3 years ago
Overview
0
Commits
8
Pipelines
0
Changes
10
Expand
Closes
#1 (closed)
Edited
3 years ago
by
Hugo BAYOUD
0
0
Merge request reports
Viewing commit
ec55516a
Prev
Next
Show latest version
10 files
+
100
−
45
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
ec55516a
change bars filename to bar
· ec55516a
Hugo BAYOUD
authored
3 years ago
src/app/share/services/auth.service.ts
+
3
−
3
Options
@@ -50,14 +50,14 @@ export class AuthService {
}
public
refreshToken
():
Observable
<
string
>
{
return
this
.
http
.
get
<
string
>
(
'
/api/auth/refresh_token
'
);
return
this
.
http
.
get
<
string
>
(
'
/api/
v1/
auth/refresh_token
'
);
}
public
signup
(
user
:
User
):
Observable
<
User
>
{
return
this
.
http
.
post
<
User
>
(
'
/api/auth/signup
'
,
user
);
return
this
.
http
.
post
<
User
>
(
'
/api/
v1/
auth/signup
'
,
user
);
}
public
signin
(
credentials
:
{
email
:
string
,
password
:
string
}):
Observable
<
string
>
{
return
this
.
http
.
post
<
string
>
(
'
/api/auth/signin
'
,
credentials
);
return
this
.
http
.
post
<
string
>
(
'
/api/
v1/
auth/signin
'
,
credentials
);
}
}
Loading