Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchCourrier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Harbor Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maarch
MaarchCourrier
Commits
7049ed0a
Commit
7049ed0a
authored
4 years ago
by
Alex ORLUC
Browse files
Options
Downloads
Patches
Plain Diff
FEAT #11720 TIME 0:20 add extenr id, enabled, communication mean export fields
(cherry picked from commit
d89fc7ca
)
parent
2048f12a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/frontend/app/administration/contact/list/export/contact-export.component.ts
+19
-2
19 additions, 2 deletions
...istration/contact/list/export/contact-export.component.ts
with
19 additions
and
2 deletions
src/frontend/app/administration/contact/list/export/contact-export.component.ts
+
19
−
2
View file @
7049ed0a
...
...
@@ -32,7 +32,24 @@ export class ContactExportComponent implements OnInit {
exportModelList
:
any
;
dataAvailable
:
any
[]
=
[];
dataAvailable
:
any
[]
=
[
{
value
:
'
id
'
,
label
:
this
.
lang
.
id
},
{
value
:
'
externalId
'
,
label
:
'
External Id
'
},
{
value
:
'
enabled
'
,
label
:
this
.
lang
.
status
},
{
value
:
'
communicationMeans
'
,
label
:
this
.
lang
.
communicationMean
}
];
@
ViewChild
(
'
listFilter
'
,
{
static
:
true
})
private
listFilter
:
any
;
...
...
@@ -62,7 +79,7 @@ export class ContactExportComponent implements OnInit {
return
data
.
contactsParameters
;
}),
tap
((
fields
:
any
)
=>
{
this
.
dataAvailable
=
fields
;
this
.
dataAvailable
=
this
.
dataAvailable
.
concat
(
fields
)
;
}),
exhaustMap
(()
=>
this
.
http
.
get
(
'
../../rest/contactsCustomFields
'
)),
map
((
data
:
any
)
=>
{
...
...
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