mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
Merge branch 'person_renderbox_thirdparty_onthefly' into post-prototypage
This commit is contained in:
commit
a4118b1235
@ -76,7 +76,9 @@ const messages = {
|
|||||||
birthday: {
|
birthday: {
|
||||||
man: "Né le",
|
man: "Né le",
|
||||||
woman: "Née le"
|
woman: "Née le"
|
||||||
} ,
|
},
|
||||||
|
deathdate: "Date de décès",
|
||||||
|
years_old: "ans",
|
||||||
no_data: "Aucune information renseignée",
|
no_data: "Aucune information renseignée",
|
||||||
type: {
|
type: {
|
||||||
thirdparty: "Tiers",
|
thirdparty: "Tiers",
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
addEntity: false,
|
addEntity: false,
|
||||||
addLink: false,
|
addLink: false,
|
||||||
addAltNames: true,
|
addAltNames: true,
|
||||||
addAge : false,
|
addAge : true,
|
||||||
hLevel : 3,
|
hLevel : 3,
|
||||||
}"
|
}"
|
||||||
:person="participation.person">
|
:person="participation.person">
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
addLink: false,
|
addLink: false,
|
||||||
addId: false,
|
addId: false,
|
||||||
addEntity: true,
|
addEntity: true,
|
||||||
addInfo: true,
|
addInfo: false,
|
||||||
hLevel: 3,
|
hLevel: 3,
|
||||||
isMultiline: true
|
isMultiline: true
|
||||||
}"
|
}"
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
<third-party-render-box
|
<third-party-render-box
|
||||||
v-if="resource.resource.type === 'thirdparty'"
|
v-if="resource.resource.type === 'thirdparty'"
|
||||||
:thirdparty="resource.resource"
|
:thirdparty="resource.resource"
|
||||||
:options="{ addLink : false, addId : false, addEntity: true, addInfo: true, hLevel: 3 }"
|
:options="{ addLink : false, addId : false, addEntity: true, addInfo: false, hLevel: 3 }"
|
||||||
>
|
>
|
||||||
<template v-slot:record-actions>
|
<template v-slot:record-actions>
|
||||||
<ul class="record_actions">
|
<ul class="record_actions">
|
||||||
|
@ -27,15 +27,18 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p v-if="this.options.addInfo == true" class="moreinfo">
|
<p v-if="options.addInfo == true" class="moreinfo">
|
||||||
<i :class="'fa fa-fw ' + getGenderIcon" title="{{ getGender }}"></i>
|
<i :class="'fa fa-fw ' + getGenderIcon" title="{{ getGender }}"></i>
|
||||||
<time v-if="person.birthdate" datetime="{{ person.birthdate }}" title="{{ birthdate }}">
|
<time v-if="person.birthdate && !person.deathdate" datetime="{{ person.birthdate }}" title="{{ birthdate }}">
|
||||||
{{ $t(getGender) + ' ' + $d(birthdate, 'text') }}
|
{{ $t(getGenderTranslation) + ' ' + $d(birthdate, 'text') }}
|
||||||
</time>
|
</time>
|
||||||
<time v-else-if="person.deathdate" datetime="{{ person.deathdate }}" title="{{ person.deathdate }}">
|
<time v-else-if="person.birthdate && person.deathdate" datetime="{{ person.deathdate }}" title="{{ person.deathdate }}">
|
||||||
{{ birthdate }} - {{ deathdate }}
|
{{ birthdate }} - {{ deathdate }}
|
||||||
</time>
|
</time>
|
||||||
<!-- <span class="age">{{ person.age }}</span> -->
|
<time v-else-if="person.deathdate" datetime="{{ person.deathdate }}" title="{{ person.deathdate }}">
|
||||||
|
{{ $t('renderbox.deathdate') + ' ' + deathdate }}
|
||||||
|
</time>
|
||||||
|
<span v-if="options.addAge && person.birthdate" class="age">{{ getAge }} {{ $t('renderbox.years_old')}}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -118,7 +121,7 @@ export default {
|
|||||||
},
|
},
|
||||||
props: ['person', 'options', 'render'],
|
props: ['person', 'options', 'render'],
|
||||||
computed: {
|
computed: {
|
||||||
getGender: function() {
|
getGenderTranslation: function() {
|
||||||
return this.person.gender == 'woman' ? 'renderbox.birthday.woman' : 'renderbox.birthday.man';
|
return this.person.gender == 'woman' ? 'renderbox.birthday.woman' : 'renderbox.birthday.man';
|
||||||
},
|
},
|
||||||
isMultiline: function() {
|
isMultiline: function() {
|
||||||
@ -132,13 +135,24 @@ export default {
|
|||||||
return this.person.gender == 'woman' ? 'fa-venus' : this.person.gender == 'man' ? 'fa-mars' : 'fa-neuter';
|
return this.person.gender == 'woman' ? 'fa-venus' : this.person.gender == 'man' ? 'fa-mars' : 'fa-neuter';
|
||||||
},
|
},
|
||||||
birthdate: function(){
|
birthdate: function(){
|
||||||
var date = new Date(this.person.birthdate.datetime);
|
if(this.person.birthdate !== null){
|
||||||
return dateToISO(date);
|
const date = new Date(this.person.birthdate.datetime);
|
||||||
|
return dateToISO(date)
|
||||||
|
} else {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
},
|
},
|
||||||
deathdate: function(){
|
deathdate: function(){
|
||||||
if (typeof this.person.deathdate !== 'undefined') {
|
// TODO FIX edition conflict: if null or undefined ?
|
||||||
var date = new Date(this.person.deathdate.datetime);
|
// if (typeof this.person.deathdate !== 'undefined') {
|
||||||
return dateToISO(date);
|
// var date = new Date(this.person.deathdate.datetime);
|
||||||
|
// return dateToISO(date);
|
||||||
|
//}
|
||||||
|
if(this.person.deathdate !== null){
|
||||||
|
const date = new Date(this.person.deathdate.datetime);
|
||||||
|
return date.toLocaleDateString("fr-FR");
|
||||||
|
} else {
|
||||||
|
return "";
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
altNameLabel: function(){
|
altNameLabel: function(){
|
||||||
@ -151,8 +165,25 @@ export default {
|
|||||||
return this.person.altNames[i].key
|
return this.person.altNames[i].key
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getUrl() {
|
getUrl: function() {
|
||||||
return `/fr/person/${this.person.id}/general`;
|
return `/fr/person/${this.person.id}/general`;
|
||||||
|
},
|
||||||
|
getAge: function(){
|
||||||
|
if(this.person.birthdate && !this.person.deathdate){
|
||||||
|
const birthday = new Date(this.person.birthdate.datetime)
|
||||||
|
const now = new Date()
|
||||||
|
return (now.getFullYear() - birthday.getFullYear())
|
||||||
|
} else if(this.person.birthdate && this.person.deathdate){
|
||||||
|
const birthday = new Date(this.person.birthdate.datetime)
|
||||||
|
const deathdate = new Date(this.person.deathdate.datetime)
|
||||||
|
return (deathdate.getFullYear() - birthday.getFullYear())
|
||||||
|
} else if(!this.person.birthdate && this.person.deathdate.datetime) {
|
||||||
|
// todo: change this
|
||||||
|
return "Age unknown"
|
||||||
|
} else {
|
||||||
|
// todo: change this
|
||||||
|
return "Age unknown"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -188,6 +219,12 @@ div.flex-table {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.age{
|
||||||
|
margin-left: 0.5em;
|
||||||
|
&:before { content: '('; }
|
||||||
|
&:after { content: ')'; }
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
addInfo: true,
|
addInfo: true,
|
||||||
addEntity: false,
|
addEntity: false,
|
||||||
addAltNames: true,
|
addAltNames: true,
|
||||||
|
addAge: true,
|
||||||
addId: true,
|
addId: true,
|
||||||
addLink: false,
|
addLink: false,
|
||||||
hLevel: 3,
|
hLevel: 3,
|
||||||
|
@ -69,6 +69,7 @@ class PersonNormalizer implements
|
|||||||
'firstName' => $person->getFirstName(),
|
'firstName' => $person->getFirstName(),
|
||||||
'lastName' => $person->getLastName(),
|
'lastName' => $person->getLastName(),
|
||||||
'birthdate' => $this->normalizer->normalize($person->getBirthdate()),
|
'birthdate' => $this->normalizer->normalize($person->getBirthdate()),
|
||||||
|
'deathdate' => $this->normalizer->normalize($person->getDeathdate()),
|
||||||
'center' => $this->normalizer->normalize($person->getCenter()),
|
'center' => $this->normalizer->normalize($person->getCenter()),
|
||||||
'phonenumber' => $person->getPhonenumber(),
|
'phonenumber' => $person->getPhonenumber(),
|
||||||
'mobilenumber' => $person->getMobilenumber(),
|
'mobilenumber' => $person->getMobilenumber(),
|
||||||
@ -125,6 +126,7 @@ class PersonNormalizer implements
|
|||||||
|
|
||||||
foreach ([
|
foreach ([
|
||||||
'birthdate' => \DateTime::class,
|
'birthdate' => \DateTime::class,
|
||||||
|
'deathdate' => \DateTime::class,
|
||||||
'center' => Center::class
|
'center' => Center::class
|
||||||
] as $item => $class) {
|
] as $item => $class) {
|
||||||
if (\array_key_exists($item, $data)) {
|
if (\array_key_exists($item, $data)) {
|
||||||
|
@ -45,7 +45,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'person'
|
- "person"
|
||||||
firstName:
|
firstName:
|
||||||
type: string
|
type: string
|
||||||
lastName:
|
lastName:
|
||||||
@ -55,7 +55,9 @@ components:
|
|||||||
description: a canonical representation for the person name
|
description: a canonical representation for the person name
|
||||||
readOnly: true
|
readOnly: true
|
||||||
birthdate:
|
birthdate:
|
||||||
$ref: '#/components/schemas/Date'
|
$ref: "#/components/schemas/Date"
|
||||||
|
deathdate:
|
||||||
|
$ref: "#/components/schemas/Date"
|
||||||
phonenumber:
|
phonenumber:
|
||||||
type: string
|
type: string
|
||||||
mobilenumber:
|
mobilenumber:
|
||||||
@ -78,7 +80,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'person'
|
- "person"
|
||||||
required:
|
required:
|
||||||
- id
|
- id
|
||||||
- type
|
- type
|
||||||
@ -96,7 +98,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'thirdparty'
|
- "thirdparty"
|
||||||
required:
|
required:
|
||||||
- id
|
- id
|
||||||
- type
|
- type
|
||||||
@ -119,15 +121,15 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'accompanying_period_resource'
|
- "accompanying_period_resource"
|
||||||
readOnly: true
|
readOnly: true
|
||||||
id:
|
id:
|
||||||
type: integer
|
type: integer
|
||||||
readOnly: true
|
readOnly: true
|
||||||
resource:
|
resource:
|
||||||
anyOf:
|
anyOf:
|
||||||
- $ref: '#/components/schemas/PersonById'
|
- $ref: "#/components/schemas/PersonById"
|
||||||
- $ref: '#/components/schemas/ThirdPartyById'
|
- $ref: "#/components/schemas/ThirdPartyById"
|
||||||
ResourceById:
|
ResourceById:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
@ -136,7 +138,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'accompanying_period_resource'
|
- "accompanying_period_resource"
|
||||||
required:
|
required:
|
||||||
- id
|
- id
|
||||||
- type
|
- type
|
||||||
@ -146,7 +148,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'accompanying_period_comment'
|
- "accompanying_period_comment"
|
||||||
readOnly: true
|
readOnly: true
|
||||||
id:
|
id:
|
||||||
type: integer
|
type: integer
|
||||||
@ -161,7 +163,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'accompanying_period_comment'
|
- "accompanying_period_comment"
|
||||||
required:
|
required:
|
||||||
- id
|
- id
|
||||||
- type
|
- type
|
||||||
@ -173,7 +175,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'social_issue'
|
- "social_issue"
|
||||||
parent_id:
|
parent_id:
|
||||||
type: integer
|
type: integer
|
||||||
readOnly: true
|
readOnly: true
|
||||||
@ -195,12 +197,12 @@ components:
|
|||||||
Household:
|
Household:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
id:
|
id:
|
||||||
type: integer
|
type: integer
|
||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'household'
|
- "household"
|
||||||
HouseholdPosition:
|
HouseholdPosition:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
@ -209,7 +211,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'household_position'
|
- "household_position"
|
||||||
AccompanyingCourseWork:
|
AccompanyingCourseWork:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
@ -218,7 +220,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'accompanying_period_work'
|
- "accompanying_period_work"
|
||||||
note:
|
note:
|
||||||
type: string
|
type: string
|
||||||
startDate:
|
startDate:
|
||||||
@ -243,15 +245,15 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'accompanying_period_work_goal'
|
- "accompanying_period_work_goal"
|
||||||
note:
|
note:
|
||||||
type: string
|
type: string
|
||||||
goal:
|
goal:
|
||||||
$ref: '#/components/schemas/SocialWorkGoalById'
|
$ref: "#/components/schemas/SocialWorkGoalById"
|
||||||
results:
|
results:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: '#/components/schemas/SocialWorkGoalById'
|
$ref: "#/components/schemas/SocialWorkGoalById"
|
||||||
|
|
||||||
SocialWorkResultById:
|
SocialWorkResultById:
|
||||||
type: object
|
type: object
|
||||||
@ -261,7 +263,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'social_work_result'
|
- "social_work_result"
|
||||||
SocialWorkGoalById:
|
SocialWorkGoalById:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
@ -270,7 +272,7 @@ components:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'social_work_goal'
|
- "social_work_goal"
|
||||||
|
|
||||||
paths:
|
paths:
|
||||||
/1.0/person/person/{id}.json:
|
/1.0/person/person/{id}.json:
|
||||||
@ -308,7 +310,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/Person'
|
$ref: "#/components/schemas/Person"
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: "OK"
|
description: "OK"
|
||||||
@ -355,18 +357,17 @@ paths:
|
|||||||
422:
|
422:
|
||||||
description: "Unprocessable entity (validation errors)"
|
description: "Unprocessable entity (validation errors)"
|
||||||
|
|
||||||
|
|
||||||
/1.0/person/address/suggest/by-person/{id}.json:
|
/1.0/person/address/suggest/by-person/{id}.json:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
- address
|
- address
|
||||||
summary: get a list of suggested address for a person
|
summary: get a list of suggested address for a person
|
||||||
description: >
|
description: >
|
||||||
The address are computed from various source. Currently:
|
The address are computed from various source. Currently:
|
||||||
|
|
||||||
- the address of course to which the person is participating
|
- the address of course to which the person is participating
|
||||||
|
|
||||||
The current person's address is always ignored.
|
The current person's address is always ignored.
|
||||||
parameters:
|
parameters:
|
||||||
- name: id
|
- name: id
|
||||||
in: path
|
in: path
|
||||||
@ -390,11 +391,11 @@ paths:
|
|||||||
- address
|
- address
|
||||||
summary: get a list of suggested address for a household
|
summary: get a list of suggested address for a household
|
||||||
description: >
|
description: >
|
||||||
The address are computed from various source. Currently:
|
The address are computed from various source. Currently:
|
||||||
|
|
||||||
- the address of course to which the members is participating
|
- the address of course to which the members is participating
|
||||||
|
|
||||||
The current household address is always ignored.
|
The current household address is always ignored.
|
||||||
parameters:
|
parameters:
|
||||||
- name: id
|
- name: id
|
||||||
in: path
|
in: path
|
||||||
@ -452,7 +453,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/AccompanyingPeriod'
|
$ref: "#/components/schemas/AccompanyingPeriod"
|
||||||
examples:
|
examples:
|
||||||
Set the requestor as anonymous:
|
Set the requestor as anonymous:
|
||||||
value:
|
value:
|
||||||
@ -488,7 +489,7 @@ paths:
|
|||||||
id: 0
|
id: 0
|
||||||
personLocation: null
|
personLocation: null
|
||||||
addressLocation:
|
addressLocation:
|
||||||
id: 7960
|
id: 7960
|
||||||
responses:
|
responses:
|
||||||
401:
|
401:
|
||||||
description: "Unauthorized"
|
description: "Unauthorized"
|
||||||
@ -520,8 +521,8 @@ paths:
|
|||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
oneOf:
|
oneOf:
|
||||||
- $ref: '#/components/schemas/PersonById'
|
- $ref: "#/components/schemas/PersonById"
|
||||||
- $ref: '#/components/schemas/ThirdPartyById'
|
- $ref: "#/components/schemas/ThirdPartyById"
|
||||||
examples:
|
examples:
|
||||||
add person with id 50:
|
add person with id 50:
|
||||||
summary: "a person with id 50"
|
summary: "a person with id 50"
|
||||||
@ -585,7 +586,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/PersonById'
|
$ref: "#/components/schemas/PersonById"
|
||||||
responses:
|
responses:
|
||||||
401:
|
401:
|
||||||
description: "Unauthorized"
|
description: "Unauthorized"
|
||||||
@ -614,7 +615,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/PersonById'
|
$ref: "#/components/schemas/PersonById"
|
||||||
responses:
|
responses:
|
||||||
401:
|
401:
|
||||||
description: "Unauthorized"
|
description: "Unauthorized"
|
||||||
@ -645,7 +646,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/Resource'
|
$ref: "#/components/schemas/Resource"
|
||||||
examples:
|
examples:
|
||||||
add person with id 50:
|
add person with id 50:
|
||||||
summary: "a person with id 50"
|
summary: "a person with id 50"
|
||||||
@ -690,7 +691,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/ResourceById'
|
$ref: "#/components/schemas/ResourceById"
|
||||||
responses:
|
responses:
|
||||||
401:
|
401:
|
||||||
description: "Unauthorized"
|
description: "Unauthorized"
|
||||||
@ -721,7 +722,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/Comment'
|
$ref: "#/components/schemas/Comment"
|
||||||
examples:
|
examples:
|
||||||
a single comment:
|
a single comment:
|
||||||
summary: "a simple comment"
|
summary: "a simple comment"
|
||||||
@ -759,7 +760,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/CommentById'
|
$ref: "#/components/schemas/CommentById"
|
||||||
responses:
|
responses:
|
||||||
401:
|
401:
|
||||||
description: "Unauthorized"
|
description: "Unauthorized"
|
||||||
@ -790,7 +791,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/Scope'
|
$ref: "#/components/schemas/Scope"
|
||||||
examples:
|
examples:
|
||||||
add a scope:
|
add a scope:
|
||||||
value:
|
value:
|
||||||
@ -824,7 +825,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/ScopeById'
|
$ref: "#/components/schemas/ScopeById"
|
||||||
responses:
|
responses:
|
||||||
401:
|
401:
|
||||||
description: "Unauthorized"
|
description: "Unauthorized"
|
||||||
@ -855,7 +856,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/SocialIssue'
|
$ref: "#/components/schemas/SocialIssue"
|
||||||
examples:
|
examples:
|
||||||
add a social issue:
|
add a social issue:
|
||||||
value:
|
value:
|
||||||
@ -889,7 +890,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/SocialIssue'
|
$ref: "#/components/schemas/SocialIssue"
|
||||||
responses:
|
responses:
|
||||||
401:
|
401:
|
||||||
description: "Unauthorized"
|
description: "Unauthorized"
|
||||||
@ -926,11 +927,11 @@ paths:
|
|||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum:
|
enum:
|
||||||
- 'accompanying_period_work'
|
- "accompanying_period_work"
|
||||||
startDate:
|
startDate:
|
||||||
$ref: '#/components/schemas/Date'
|
$ref: "#/components/schemas/Date"
|
||||||
endDate:
|
endDate:
|
||||||
$ref: '#/components/schemas/Date'
|
$ref: "#/components/schemas/Date"
|
||||||
examples:
|
examples:
|
||||||
create a work:
|
create a work:
|
||||||
value:
|
value:
|
||||||
@ -992,7 +993,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/AccompanyingCourseWork'
|
$ref: "#/components/schemas/AccompanyingCourseWork"
|
||||||
responses:
|
responses:
|
||||||
401:
|
401:
|
||||||
description: "Unauthorized"
|
description: "Unauthorized"
|
||||||
@ -1029,8 +1030,6 @@ paths:
|
|||||||
400:
|
400:
|
||||||
description: "transition cannot be applyed"
|
description: "transition cannot be applyed"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/1.0/person/accompanying-period/origin.json:
|
/1.0/person/accompanying-period/origin.json:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
@ -1064,8 +1063,6 @@ paths:
|
|||||||
404:
|
404:
|
||||||
description: "Not found"
|
description: "Not found"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/1.0/person/household.json:
|
/1.0/person/household.json:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
@ -1095,7 +1092,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/Household'
|
$ref: "#/components/schemas/Household"
|
||||||
404:
|
404:
|
||||||
description: "not found"
|
description: "not found"
|
||||||
401:
|
401:
|
||||||
@ -1107,9 +1104,9 @@ paths:
|
|||||||
- household
|
- household
|
||||||
summary: Return households associated with the given person through accompanying periods
|
summary: Return households associated with the given person through accompanying periods
|
||||||
description: |
|
description: |
|
||||||
Return households associated with the given person throught accompanying periods participation.
|
Return households associated with the given person throught accompanying periods participation.
|
||||||
|
|
||||||
The current household of the given person is excluded.
|
The current household of the given person is excluded.
|
||||||
parameters:
|
parameters:
|
||||||
- name: person_id
|
- name: person_id
|
||||||
in: path
|
in: path
|
||||||
@ -1125,7 +1122,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/Household'
|
$ref: "#/components/schemas/Household"
|
||||||
404:
|
404:
|
||||||
description: "not found"
|
description: "not found"
|
||||||
401:
|
401:
|
||||||
@ -1149,23 +1146,22 @@ paths:
|
|||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
person:
|
person:
|
||||||
$ref: '#/components/schemas/PersonById'
|
$ref: "#/components/schemas/PersonById"
|
||||||
start_date:
|
start_date:
|
||||||
$ref: '#/components/schemas/Date'
|
$ref: "#/components/schemas/Date"
|
||||||
position:
|
position:
|
||||||
$ref: '#/components/schemas/HouseholdPosition'
|
$ref: "#/components/schemas/HouseholdPosition"
|
||||||
holder:
|
holder:
|
||||||
type: boolean
|
type: boolean
|
||||||
comment:
|
comment:
|
||||||
type: string
|
type: string
|
||||||
destination:
|
destination:
|
||||||
$ref: '#/components/schemas/Household'
|
$ref: "#/components/schemas/Household"
|
||||||
examples:
|
examples:
|
||||||
Moving person to a new household:
|
Moving person to a new household:
|
||||||
value:
|
value:
|
||||||
concerned:
|
concerned:
|
||||||
-
|
- person:
|
||||||
person:
|
|
||||||
id: 0
|
id: 0
|
||||||
type: person
|
type: person
|
||||||
position:
|
position:
|
||||||
@ -1180,8 +1176,7 @@ paths:
|
|||||||
Moving person to a new household and set an address to this household:
|
Moving person to a new household and set an address to this household:
|
||||||
value:
|
value:
|
||||||
concerned:
|
concerned:
|
||||||
-
|
- person:
|
||||||
person:
|
|
||||||
id: 0
|
id: 0
|
||||||
type: person
|
type: person
|
||||||
position:
|
position:
|
||||||
@ -1198,8 +1193,7 @@ paths:
|
|||||||
Moving person to an existing household:
|
Moving person to an existing household:
|
||||||
value:
|
value:
|
||||||
concerned:
|
concerned:
|
||||||
-
|
- person:
|
||||||
person:
|
|
||||||
id: 0
|
id: 0
|
||||||
type: person
|
type: person
|
||||||
position:
|
position:
|
||||||
@ -1215,8 +1209,7 @@ paths:
|
|||||||
Removing a person from any household:
|
Removing a person from any household:
|
||||||
value:
|
value:
|
||||||
concerned:
|
concerned:
|
||||||
-
|
- person:
|
||||||
person:
|
|
||||||
id: 0
|
id: 0
|
||||||
type: person
|
type: person
|
||||||
start_date:
|
start_date:
|
||||||
@ -1270,8 +1263,6 @@ paths:
|
|||||||
400:
|
400:
|
||||||
description: "transition cannot be applyed"
|
description: "transition cannot be applyed"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/1.0/person/social/social-action.json:
|
/1.0/person/social/social-action.json:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
@ -1349,7 +1340,6 @@ paths:
|
|||||||
404:
|
404:
|
||||||
description: not found
|
description: not found
|
||||||
|
|
||||||
|
|
||||||
/1.0/person/social-work/social-issue.json:
|
/1.0/person/social-work/social-issue.json:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
@ -1379,7 +1369,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/SocialIssue'
|
$ref: "#/components/schemas/SocialIssue"
|
||||||
404:
|
404:
|
||||||
description: "not found"
|
description: "not found"
|
||||||
401:
|
401:
|
||||||
|
@ -8,6 +8,8 @@ use Symfony\Component\HttpKernel\DependencyInjection\Extension;
|
|||||||
use Symfony\Component\DependencyInjection\Loader;
|
use Symfony\Component\DependencyInjection\Loader;
|
||||||
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
|
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
|
||||||
use Chill\ThirdPartyBundle\Security\Voter\ThirdPartyVoter;
|
use Chill\ThirdPartyBundle\Security\Voter\ThirdPartyVoter;
|
||||||
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is the class that loads and manages your bundle configuration.
|
* This is the class that loads and manages your bundle configuration.
|
||||||
@ -47,11 +49,42 @@ class ChillThirdPartyExtension extends Extension implements PrependExtensionInte
|
|||||||
{
|
{
|
||||||
//declare routes for 3party bundle
|
//declare routes for 3party bundle
|
||||||
$container->prependExtensionConfig('chill_main', array(
|
$container->prependExtensionConfig('chill_main', array(
|
||||||
'routing' => array(
|
'routing' => [
|
||||||
'resources' => array(
|
'resources' => array(
|
||||||
'@ChillThirdPartyBundle/config/routes.yaml'
|
'@ChillThirdPartyBundle/config/routes.yaml'
|
||||||
)
|
)
|
||||||
)
|
],
|
||||||
|
'apis' => [
|
||||||
|
[
|
||||||
|
'class' => \Chill\ThirdPartyBundle\Entity\ThirdParty::class,
|
||||||
|
'name' => 'thirdparty',
|
||||||
|
'base_path' => '/api/1.0/thirdparty/thirdparty',
|
||||||
|
'base_role' => \Chill\ThirdPartyBundle\Security\Authorization\ThirdPartyVoter::class,
|
||||||
|
'controller' => \Chill\ThirdPartyBundle\Controller\ThirdPartyApiController::class,
|
||||||
|
'actions' => [
|
||||||
|
'_index' => [
|
||||||
|
'methods' => [
|
||||||
|
Request::METHOD_GET => true,
|
||||||
|
Request::METHOD_HEAD => true,
|
||||||
|
Request::METHOD_POST => true,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'_entity' => [
|
||||||
|
'methods' => [
|
||||||
|
Request::METHOD_GET => true,
|
||||||
|
Request::METHOD_HEAD => true,
|
||||||
|
Request::METHOD_POST=> true,
|
||||||
|
],
|
||||||
|
'roles' => [
|
||||||
|
Request::METHOD_GET => \Chill\ThirdPartyBundle\Security\Voter\ThirdPartyVoter::SHOW,
|
||||||
|
Request::METHOD_HEAD => \Chill\ThirdPartyBundle\Security\Voter\ThirdPartyVoter::SHOW,
|
||||||
|
Request::METHOD_POST => \Chill\ThirdPartyBundle\Security\Voter\ThirdPartyVoter::CREATE,
|
||||||
|
|
||||||
|
],
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
],
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,6 +30,7 @@ use Chill\MainBundle\Entity\Center;
|
|||||||
use Symfony\Component\Validator\Constraints as Assert;
|
use Symfony\Component\Validator\Constraints as Assert;
|
||||||
use Chill\MainBundle\Entity\Address;
|
use Chill\MainBundle\Entity\Address;
|
||||||
use Symfony\Component\Serializer\Annotation\DiscriminatorMap;
|
use Symfony\Component\Serializer\Annotation\DiscriminatorMap;
|
||||||
|
use Symfony\Component\Serializer\Annotation\Groups;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ThirdParty is a party recorded in the database.
|
* ThirdParty is a party recorded in the database.
|
||||||
@ -59,6 +60,7 @@ class ThirdParty
|
|||||||
* @var string
|
* @var string
|
||||||
* @ORM\Column(name="name", type="string", length=255)
|
* @ORM\Column(name="name", type="string", length=255)
|
||||||
* @Assert\Length(min="2")
|
* @Assert\Length(min="2")
|
||||||
|
* @Groups({"read"})
|
||||||
*/
|
*/
|
||||||
private $name;
|
private $name;
|
||||||
|
|
||||||
@ -128,6 +130,7 @@ class ThirdParty
|
|||||||
* @Assert\Regex("/^([\+{1}])([0-9\s*]{4,20})$/",
|
* @Assert\Regex("/^([\+{1}])([0-9\s*]{4,20})$/",
|
||||||
* message="Invalid phone number: it should begin with the international prefix starting with ""+"", hold only digits and be smaller than 20 characters. Ex: +33123456789"
|
* message="Invalid phone number: it should begin with the international prefix starting with ""+"", hold only digits and be smaller than 20 characters. Ex: +33123456789"
|
||||||
* )
|
* )
|
||||||
|
* @Groups({"read"})
|
||||||
*/
|
*/
|
||||||
private $telephone;
|
private $telephone;
|
||||||
|
|
||||||
@ -135,6 +138,7 @@ class ThirdParty
|
|||||||
* @var string|null
|
* @var string|null
|
||||||
* @ORM\Column(name="email", type="string", length=255, nullable=true)
|
* @ORM\Column(name="email", type="string", length=255, nullable=true)
|
||||||
* @Assert\Email(checkMX=false)
|
* @Assert\Email(checkMX=false)
|
||||||
|
* @Groups({"read"})
|
||||||
*/
|
*/
|
||||||
private $email;
|
private $email;
|
||||||
|
|
||||||
@ -143,6 +147,7 @@ class ThirdParty
|
|||||||
* @ORM\ManyToOne(targetEntity="\Chill\MainBundle\Entity\Address",
|
* @ORM\ManyToOne(targetEntity="\Chill\MainBundle\Entity\Address",
|
||||||
* cascade={"persist", "remove"})
|
* cascade={"persist", "remove"})
|
||||||
* @ORM\JoinColumn(nullable=true, onDelete="SET NULL")
|
* @ORM\JoinColumn(nullable=true, onDelete="SET NULL")
|
||||||
|
* @Groups({"read"})
|
||||||
*/
|
*/
|
||||||
private $address;
|
private $address;
|
||||||
|
|
||||||
|
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* GET a thirdparty by id
|
||||||
|
*/
|
||||||
|
const getThirdparty = (id) => {
|
||||||
|
const url = `/api/1.0/thirdparty/thirdparty/${id}.json`;
|
||||||
|
return fetch(url)
|
||||||
|
.then(response => {
|
||||||
|
if (response.ok) {
|
||||||
|
return response.json();
|
||||||
|
}
|
||||||
|
throw Error('Error with request resource response');
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* POST a new person
|
||||||
|
*/
|
||||||
|
const postThirdparty = (body) => {
|
||||||
|
const url = `/api/1.0/thirdparty/thirdparty.json`;
|
||||||
|
return fetch(url, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json;charset=utf-8'
|
||||||
|
},
|
||||||
|
body: JSON.stringify(body)
|
||||||
|
})
|
||||||
|
.then(response => {
|
||||||
|
if (response.ok) { return response.json(); }
|
||||||
|
throw Error('Error with request resource response');
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export {
|
||||||
|
getThirdparty,
|
||||||
|
postThirdparty
|
||||||
|
};
|
@ -26,7 +26,7 @@
|
|||||||
<time v-else-if="thirdparty.deathdate" datetime="{{ thirdparty.deathdate.datetime }}" title="{{ thirdparty.deathdate }}">
|
<time v-else-if="thirdparty.deathdate" datetime="{{ thirdparty.deathdate.datetime }}" title="{{ thirdparty.deathdate }}">
|
||||||
{{ birthdate }} - {{ deathdate }}
|
{{ birthdate }} - {{ deathdate }}
|
||||||
</time>
|
</time>
|
||||||
<span class="age">{{ thirdparty.age }}</span>
|
<span v-if="options.addAge == true" class="age">{{ thirdparty.age }}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -37,9 +37,9 @@
|
|||||||
<i class="fa fa-li fa-map-marker"></i>
|
<i class="fa fa-li fa-map-marker"></i>
|
||||||
<show-address :address="thirdparty.address" :isMultiline="isMultiline"></show-address>
|
<show-address :address="thirdparty.address" :isMultiline="isMultiline"></show-address>
|
||||||
</li>
|
</li>
|
||||||
<li v-if="thirdparty.telephone">
|
<li v-if="thirdparty.phonenumber">
|
||||||
<i class="fa fa-li fa-mobile"></i>
|
<i class="fa fa-li fa-mobile"></i>
|
||||||
<a :href="'tel: ' + thirdparty.telephone">{{ thirdparty.telephone }}</a>
|
<a :href="'tel: ' + thirdparty.phonenumber">{{ thirdparty.phonenumber }}</a>
|
||||||
</li>
|
</li>
|
||||||
<li v-if="thirdparty.email">
|
<li v-if="thirdparty.email">
|
||||||
<i class="fa fa-li fa-envelope-o"></i>
|
<i class="fa fa-li fa-envelope-o"></i>
|
||||||
|
@ -1,22 +1,109 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="action === 'show'">
|
<div v-if="action === 'show'">
|
||||||
show
|
<div class="flex-table">
|
||||||
thirdparty
|
<third-party-render-box
|
||||||
{{ id }}
|
:thirdparty="thirdparty"
|
||||||
|
:options="{
|
||||||
|
addInfo: true,
|
||||||
|
addEntity: false,
|
||||||
|
addAltNames: true,
|
||||||
|
addId: true,
|
||||||
|
addLink: false,
|
||||||
|
addAge: false,
|
||||||
|
hLevel: 3,
|
||||||
|
addCenter: true,
|
||||||
|
addNoData: true,
|
||||||
|
isMultiline: true
|
||||||
|
}"
|
||||||
|
></third-party-render-box>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="action === 'edit' || action === 'create'">
|
<div v-else-if="action === 'edit' || action === 'create'">
|
||||||
{{ action }}
|
|
||||||
thirdparty
|
<div class="form-floating mb-3">
|
||||||
{{ id }}
|
<input class="form-control form-control-lg" id="firstname" v-model="thirdparty.firstName" v-bind:placeholder="$t('thirdparty.firstname')" />
|
||||||
|
<label for="firstname">{{ $t('thirdparty.firstname') }}</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-floating mb-3">
|
||||||
|
<input class="form-control form-control-lg" id="lastname" v-model="thirdparty.lastName" v-bind:placeholder="$t('thirdparty.lastname')" />
|
||||||
|
<label for="lastname">{{ $t('thirdparty.lastname') }}</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="input-group mb-3">
|
||||||
|
<span class="input-group-text" id="email"><i class="fa fa-fw fa-envelope"></i></span>
|
||||||
|
<input class="form-control form-control-lg"
|
||||||
|
v-model="thirdparty.email"
|
||||||
|
v-bind:placeholder="$t('thirdparty.email')"
|
||||||
|
v-bind:aria-label="$t('thirdparty.email')"
|
||||||
|
aria-describedby="email" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="input-group mb-3">
|
||||||
|
<span class="input-group-text" id="phonenumber"><i class="fa fa-fw fa-phone"></i></span>
|
||||||
|
<input class="form-control form-control-lg"
|
||||||
|
v-model="thirdparty.phonenumber"
|
||||||
|
v-bind:placeholder="$t('thirdparty.phonenumber')"
|
||||||
|
v-bind:aria-label="$t('thirdparty.phonenumber')"
|
||||||
|
aria-describedby="phonenumber" />
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import ThirdPartyRenderBox from '../Entity/ThirdPartyRenderBox.vue';
|
||||||
|
import { getThirdparty, postThirdparty } from '../../_api/OnTheFly';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "OnTheFlyThirdParty",
|
name: "OnTheFlyThirdParty",
|
||||||
props: ['id', 'type', 'action']
|
props: ['id', 'type', 'action'],
|
||||||
|
components: {
|
||||||
|
ThirdPartyRenderBox,
|
||||||
|
},
|
||||||
|
data: function() {
|
||||||
|
return {
|
||||||
|
thirdparty: {
|
||||||
|
type: 'thirdparty'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
loadThirdparty(){
|
||||||
|
getThirdparty(this.id).then(thirdparty => new Promise((resolve, reject) => {
|
||||||
|
this.thirdparty = thirdparty;
|
||||||
|
resolve();
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
postData() {
|
||||||
|
postThirdparty(this.thirdparty).then(thirdparty => new Promise((resolve, reject) => {
|
||||||
|
this.thirdparty = thirdparty;
|
||||||
|
resolve();
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
if (this.action !== 'create'){
|
||||||
|
this.loadThirdparty();
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="css" scoped>
|
<style lang="scss" scoped>
|
||||||
|
div.flex-table {
|
||||||
|
div.item-bloc {
|
||||||
|
div.item-row {
|
||||||
|
div.item-col:last-child {
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dl {
|
||||||
|
dd {
|
||||||
|
margin-left: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
@ -21,6 +21,8 @@ class ThirdPartyNormalizer implements NormalizerInterface, NormalizerAwareInterf
|
|||||||
$data['id'] = $thirdParty->getId();
|
$data['id'] = $thirdParty->getId();
|
||||||
$data['address'] = $this->normalizer->normalize($thirdParty->getAddress(), $format,
|
$data['address'] = $this->normalizer->normalize($thirdParty->getAddress(), $format,
|
||||||
[ 'address_rendering' => 'short' ]);
|
[ 'address_rendering' => 'short' ]);
|
||||||
|
$data['phonenumber'] = $thirdParty->getTelephone();
|
||||||
|
$data['email'] = $thirdParty->getEmail();
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
43
src/Bundle/ChillThirdPartyBundle/chill.api.specs.yaml
Normal file
43
src/Bundle/ChillThirdPartyBundle/chill.api.specs.yaml
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
openapi: "3.0.0"
|
||||||
|
info:
|
||||||
|
version: "1.0.0"
|
||||||
|
title: "Chill api"
|
||||||
|
description: "Api documentation for chill. Currently, work in progress"
|
||||||
|
servers:
|
||||||
|
- url: "/api"
|
||||||
|
description: "Your current dev server"
|
||||||
|
|
||||||
|
paths:
|
||||||
|
/1.0/thirdparty/thirdparty.json:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- thirdparty
|
||||||
|
summary: Return a list of all thirdparty items
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: "ok"
|
||||||
|
401:
|
||||||
|
description: "Unauthorized"
|
||||||
|
|
||||||
|
/1.0/thirdparty/thirdparty/{id}.json:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- thirdparty
|
||||||
|
summary: Return a thirdparty item by id
|
||||||
|
parameters:
|
||||||
|
- name: id
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
description: The thirdparty id
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
format: integer
|
||||||
|
minimum: 1
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: "ok"
|
||||||
|
404:
|
||||||
|
description: "not found"
|
||||||
|
401:
|
||||||
|
description: "Unauthorized"
|
Loading…
x
Reference in New Issue
Block a user