-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67bca1e
commit b02760d
Showing
44 changed files
with
455 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
import { AvatarUrls } from './avatarUrls'; | ||
|
||
/** Details of an avatar. */ | ||
export interface Avatar { | ||
/** The file name of the avatar icon. Returned for system avatars. */ | ||
fileName?: string; | ||
/** The ID of the avatar. */ | ||
id: string; | ||
/** Whether the avatar can be deleted. */ | ||
isDeletable?: boolean; | ||
isDeletable: boolean; | ||
/** Whether the avatar is used in Jira. For example, shown as a project's avatar. */ | ||
isSelected?: boolean; | ||
isSelected: boolean; | ||
/** Whether the avatar is a system avatar. */ | ||
isSystemAvatar?: boolean; | ||
isSystemAvatar: boolean; | ||
/** | ||
* The owner of the avatar. For a system avatar the owner is null (and nothing is returned). For non-system avatars | ||
* this is the appropriate identifier, such as the ID for a project or the account ID for a user. | ||
*/ | ||
owner?: string; | ||
/** The list of avatar icon URLs. */ | ||
urls?: {}; | ||
urls: AvatarUrls; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.