Skip to content
Snippets Groups Projects
Commit e76305f7 authored by Sirieam Marie Hunke's avatar Sirieam Marie Hunke
Browse files

Merge branch 'dev' into 'main'

merge dev into main

See merge request !119
parents c42bbfed 2d948b6a
No related branches found
No related tags found
1 merge request!119merge dev into main
...@@ -170,7 +170,6 @@ export * from './user-dto-paged-response'; ...@@ -170,7 +170,6 @@ export * from './user-dto-paged-response';
export * from './user-dto-response'; export * from './user-dto-response';
export * from './user-email-dto'; export * from './user-email-dto';
export * from './user-for-update-dto'; export * from './user-for-update-dto';
export * from './user-institute-dto';
export * from './user-merge-dto'; export * from './user-merge-dto';
export * from './user-merge-dto-response'; export * from './user-merge-dto-response';
export * from './user-minimal-dto'; export * from './user-minimal-dto';
......
...@@ -30,9 +30,6 @@ import type { TitleDto } from './title-dto'; ...@@ -30,9 +30,6 @@ import type { TitleDto } from './title-dto';
import type { UserEmailDto } from './user-email-dto'; import type { UserEmailDto } from './user-email-dto';
// May contain unused imports in some cases // May contain unused imports in some cases
// @ts-ignore // @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'; import type { UserOrganizationDto } from './user-organization-dto';
/** /**
...@@ -107,12 +104,6 @@ export interface UserDto { ...@@ -107,12 +104,6 @@ export interface UserDto {
* @memberof UserDto * @memberof UserDto
*/ */
'organizations'?: Array<UserOrganizationDto>; 'organizations'?: Array<UserOrganizationDto>;
/**
* The institutes associated with the user.
* @type {Array<UserInstituteDto>}
* @memberof UserDto
*/
'institutes'?: Array<UserInstituteDto>;
/** /**
* The identity providers associated with the user. * The identity providers associated with the user.
* @type {Array<IdentityProviderDto>} * @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