mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 13:03:04 +00:00
ESLint: fix indentation
This commit is contained in:
@@ -21,13 +21,13 @@ export class Community extends DSpaceObject implements ChildHALResource, HandleO
|
||||
|
||||
@excludeFromEquals
|
||||
@autoserialize
|
||||
archivedItemsCount: number;
|
||||
archivedItemsCount: number;
|
||||
|
||||
/**
|
||||
* The {@link HALLink}s for this Community
|
||||
*/
|
||||
@deserialize
|
||||
_links: {
|
||||
_links: {
|
||||
collections: HALLink;
|
||||
logo: HALLink;
|
||||
subcommunities: HALLink;
|
||||
@@ -41,28 +41,28 @@ export class Community extends DSpaceObject implements ChildHALResource, HandleO
|
||||
* Will be undefined unless the logo {@link HALLink} has been resolved.
|
||||
*/
|
||||
@link(BITSTREAM)
|
||||
logo?: Observable<RemoteData<Bitstream>>;
|
||||
logo?: Observable<RemoteData<Bitstream>>;
|
||||
|
||||
/**
|
||||
* The list of Collections that are direct children of this Community
|
||||
* Will be undefined unless the collections {@link HALLink} has been resolved.
|
||||
*/
|
||||
@link(COLLECTION, true)
|
||||
collections?: Observable<RemoteData<PaginatedList<Collection>>>;
|
||||
collections?: Observable<RemoteData<PaginatedList<Collection>>>;
|
||||
|
||||
/**
|
||||
* The list of Communities that are direct children of this Community
|
||||
* Will be undefined unless the subcommunities {@link HALLink} has been resolved.
|
||||
*/
|
||||
@link(COMMUNITY, true)
|
||||
subcommunities?: Observable<RemoteData<PaginatedList<Community>>>;
|
||||
subcommunities?: Observable<RemoteData<PaginatedList<Community>>>;
|
||||
|
||||
/**
|
||||
* The Community that is a direct parent of this Community
|
||||
* Will be undefined unless the parent community HALLink has been resolved.
|
||||
*/
|
||||
@link(COMMUNITY, false)
|
||||
parentCommunity?: Observable<RemoteData<Community>>;
|
||||
parentCommunity?: Observable<RemoteData<Community>>;
|
||||
|
||||
/**
|
||||
* A string representing the unique handle of this Community
|
||||
|
Reference in New Issue
Block a user