Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
admin-gui
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
Container registry
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
web-et-numerique
web-et-numerique-internet
data.grandlyon.com
web-portal
components
custom-apps
admin-gui
Commits
d5be583e
Commit
d5be583e
authored
5 years ago
by
FORESTIER Fabien
Browse files
Options
Downloads
Patches
Plain Diff
Add missing changelog configuration for dev and rec + fix wrong notification type
parent
4a4f6a9a
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!14
Version 1.3.0
Pipeline
#2885
passed
5 years ago
Stage: build
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config/config-dev.json
+4
-1
4 additions, 1 deletion
config/config-dev.json
config/config-rec.json
+4
-1
4 additions, 1 deletion
config/config-rec.json
src/app/components/formats/edit/format-form.component.ts
+2
-2
2 additions, 2 deletions
src/app/components/formats/edit/format-form.component.ts
with
10 additions
and
4 deletions
config/config-dev.json
+
4
−
1
View file @
d5be583e
...
@@ -13,5 +13,8 @@
...
@@ -13,5 +13,8 @@
},
},
"middlewareLegacyAuth"
:
{
"middlewareLegacyAuth"
:
{
"url"
:
"https://kong-dev.alpha.grandlyon.com/middleware-legacy/"
"url"
:
"https://kong-dev.alpha.grandlyon.com/middleware-legacy/"
},
"changelog"
:
{
"url"
:
"https://kong-dev.alpha.grandlyon.com/changelog/"
}
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
config/config-rec.json
+
4
−
1
View file @
d5be583e
...
@@ -13,5 +13,8 @@
...
@@ -13,5 +13,8 @@
},
},
"middlewareLegacyAuth"
:
{
"middlewareLegacyAuth"
:
{
"url"
:
"https://kong-rec.alpha.grandlyon.com/middleware-legacy/"
"url"
:
"https://kong-rec.alpha.grandlyon.com/middleware-legacy/"
},
"changelog"
:
{
"url"
:
"https://kong-rec.alpha.grandlyon.com/changelog/"
}
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/app/components/formats/edit/format-form.component.ts
+
2
−
2
View file @
d5be583e
...
@@ -57,7 +57,7 @@ export class FormatFormComponent implements OnInit {
...
@@ -57,7 +57,7 @@ export class FormatFormComponent implements OnInit {
this
.
_formatService
.
update
(
this
.
format
).
subscribe
(
this
.
_formatService
.
update
(
this
.
format
).
subscribe
(
(
formatUpdate
)
=>
{
(
formatUpdate
)
=>
{
this
.
_notificationService
.
notify
({
this
.
_notificationService
.
notify
({
type
:
'
error
'
,
type
:
'
success
'
,
message
:
'
Le format a bien été mis à jour.
'
,
message
:
'
Le format a bien été mis à jour.
'
,
});
});
this
.
_router
.
navigate
([
'
/formats
'
,
formatUpdate
.
id
]);
this
.
_router
.
navigate
([
'
/formats
'
,
formatUpdate
.
id
]);
...
@@ -73,7 +73,7 @@ export class FormatFormComponent implements OnInit {
...
@@ -73,7 +73,7 @@ export class FormatFormComponent implements OnInit {
this
.
_formatService
.
create
(
this
.
format
).
subscribe
(
this
.
_formatService
.
create
(
this
.
format
).
subscribe
(
(
formatCreated
)
=>
{
(
formatCreated
)
=>
{
this
.
_notificationService
.
notify
({
this
.
_notificationService
.
notify
({
type
:
'
error
'
,
type
:
'
success
'
,
message
:
'
Le format a bien été créé.
'
,
message
:
'
Le format a bien été créé.
'
,
});
});
this
.
_router
.
navigate
([
'
/formats
'
,
formatCreated
.
id
]);
this
.
_router
.
navigate
([
'
/formats
'
,
formatCreated
.
id
]);
...
...
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