Skip to content

Commit

Permalink
268: Add MemberProfile to docs (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
JensAstrup authored Jun 4, 2024
1 parent 3a12e0e commit c3d2756
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
8 changes: 5 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ import ObjectiveInterface from '@sx/objectives/contracts/objective-interface'
import LabelInterface from '@sx/labels/contracts/label-interface'
import KeyResultInterface from '@sx/key-results/contracts/key-result-interface'
import LinkedFileInterface from '@sx/linked-files/contracts/linked-file-interface'
import MemberProfile from '@sx/members/contracts/member-profile'


// Utils
Expand All @@ -71,6 +72,8 @@ export {
LinkedFilesService,
CustomFieldsService,
UploadedFilesService,
}
export {
IterationInterface,
MemberInterface,
StoryInterface,
Expand All @@ -79,9 +82,8 @@ export {
EpicInterface,
ObjectiveInterface,
LabelInterface,
KeyResultInterface
}
export {
KeyResultInterface,
MemberProfile,
ThreadedCommentInterface,
CreateThreadedCommentData,
StoryCommentInterface,
Expand Down
19 changes: 10 additions & 9 deletions src/members/contracts/member-profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@ import Workspace from '@sx/workspace/contracts/workspace'


interface MemberProfile extends BaseInterface {
deactivated: boolean,
displayIcon: string,
emailAddress: string,
gravatarHash: string,
id: UUID,
isOwner: boolean,
mentionName: string,
name: string,
deactivated: boolean
displayIcon: string
emailAddress: string
gravatarHash: string
id: UUID
isOwner: boolean
mentionName: string
name: string
twoFactorAuthEnabled: boolean
workspace: Workspace
}

export {MemberProfile}
export { MemberProfile }
export default MemberProfile

0 comments on commit c3d2756

Please sign in to comment.