Added new responsetype for new class

ref #187
This commit is contained in:
Nicolai Ort 2021-04-03 17:05:58 +02:00
parent d70c5b1bbc
commit f693f2cde9
2 changed files with 2 additions and 1 deletions

View File

@ -35,4 +35,5 @@ export enum ResponseObjectType {
USER = 'USER', USER = 'USER',
USERGROUP = 'USERGROUP', USERGROUP = 'USERGROUP',
USERPERMISSIONS = 'USERPERMISSIONS', USERPERMISSIONS = 'USERPERMISSIONS',
SELFSERVICEDONOR = 'SELFSERVICEDONOR'
} }

View File

@ -12,7 +12,7 @@ export class ResponseSelfServiceDonor implements IResponse {
* The responseType. * The responseType.
* This contains the type of class/entity this response contains. * This contains the type of class/entity this response contains.
*/ */
responseType: ResponseObjectType = ResponseObjectType.SELFSERVICERUNNER; responseType: ResponseObjectType = ResponseObjectType.SELFSERVICEDONOR;
/** /**
* The participant's id. * The participant's id.