Skip to content
Snippets Groups Projects
Commit 2d948b6a authored by Sandra Westerhoff's avatar Sandra Westerhoff
Browse files

Merge branch 'Issue/2900-removeInsituteField' into 'dev'

Update: Removed Institute Field

See merge request !118
parents c42bbfed 9b0d3ab9
No related branches found
No related tags found
2 merge requests!119merge dev into main,!118Update: Removed Institute Field
......@@ -170,7 +170,6 @@ export * from './user-dto-paged-response';
export * from './user-dto-response';
export * from './user-email-dto';
export * from './user-for-update-dto';
export * from './user-institute-dto';
export * from './user-merge-dto';
export * from './user-merge-dto-response';
export * from './user-minimal-dto';
......
......@@ -30,9 +30,6 @@ import type { TitleDto } from './title-dto';
import type { UserEmailDto } from './user-email-dto';
// May contain unused imports in some cases
// @ts-ignore
import type { UserInstituteDto } from './user-institute-dto';
// May contain unused imports in some cases
// @ts-ignore
import type { UserOrganizationDto } from './user-organization-dto';
/**
......@@ -107,12 +104,6 @@ export interface UserDto {
* @memberof UserDto
*/
'organizations'?: Array<UserOrganizationDto>;
/**
* The institutes associated with the user.
* @type {Array<UserInstituteDto>}
* @memberof UserDto
*/
'institutes'?: Array<UserInstituteDto>;
/**
* The identity providers associated with the user.
* @type {Array<IdentityProviderDto>}
......
/* tslint:disable */
/* eslint-disable */
/**
* Coscine Web API
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
*
* The version of the OpenAPI document: 2.0
* Contact: servicedesk@itc.rwth-aachen.de
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { PublicationAdvisoryServiceDto } from './publication-advisory-service-dto';
/**
* Represents a Data Transfer Object (DTO) for user institute information, extending the OrganizationDto.
* @export
* @interface UserInstituteDto
*/
export interface UserInstituteDto {
/**
* The ROR (Research Organization Registry) ID of the organization.
* @type {string}
* @memberof UserInstituteDto
*/
'uri'?: string;
/**
* The display name of the organization.
* @type {string}
* @memberof UserInstituteDto
*/
'displayName'?: string;
/**
* The email address of the organization.
* @type {string}
* @memberof UserInstituteDto
*/
'email'?: string | null;
/**
*
* @type {PublicationAdvisoryServiceDto}
* @memberof UserInstituteDto
*/
'publicationAdvisoryService'?: PublicationAdvisoryServiceDto;
/**
* Determines if the organization\'s details can be modified. Defaults to `true`; manually set to `false`.
* @type {boolean}
* @memberof UserInstituteDto
*/
'readOnly'?: boolean;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment