Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CollabSpace Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mona Schulz
CollabSpace Frontend
Commits
501181b6
Commit
501181b6
authored
5 days ago
by
MonaS8
Browse files
Options
Downloads
Patches
Plain Diff
update api.ts
parent
486b810c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/composables/api.ts
+26
-8
26 additions, 8 deletions
src/composables/api.ts
with
26 additions
and
8 deletions
src/composables/api.ts
+
26
−
8
View file @
501181b6
...
...
@@ -161,6 +161,14 @@ export interface RoomSession {
}[];
roomId
:
number
;
roomName
:
string
;
modeName
?:
string
;
activities
:
{
activity
:
string
;
timestamp
:
Date
;
userId
:
string
;
}[];
points
:
Points
;
sessionId
:
number
;
}
export
type
RoomSessionUser
=
{
...
...
@@ -168,6 +176,8 @@ export type RoomSessionUser = {
roomSession
:
RoomSession
;
userId
:
string
;
name
:
string
;
points
:
Points
;
roleName
?:
string
;
}
export
type
Activity
=
{
...
...
@@ -181,10 +191,14 @@ export type Activity = {
timestamp
:
Date
;
}
export
interface
Role
{
id
:
number
;
name
:
string
;
description
?:
string
;
export
type
Roles
=
{
userId
:
number
;
roleNames
?:
string
[];
}
export
type
Mode
=
{
sessionId
:
number
;
modeName
:
string
;
}
/**
...
...
@@ -382,11 +396,11 @@ const api = {
},
async
getPointsByUser
(
userId
:
number
):
Promise
<
Points
>
{
return
fetch
.
getOrFail
(
`/
s
ession
Points
/user/
${
userId
}
`
);
return
fetch
.
getOrFail
(
`/
roomS
ession
User
/user/
${
userId
}
`
);
},
async
getPointsBySession
(
sessionId
:
number
):
Promise
<
Points
>
{
return
fetch
.
getOrFail
(
`/
s
ession
Points
/session/
${
sessionId
}
`
);
return
fetch
.
getOrFail
(
`/
roomS
ession/session/
${
sessionId
}
`
);
},
async
getRoomSessions
(
roomId
:
string
,
categoryId
:
number
):
Promise
<
RoomSession
[]
>
{
...
...
@@ -398,8 +412,12 @@ const api = {
return
await
fetch
.
getOrFail
(
`/category/
${
categoryId
}
/room/
${
roomId
}
/sessions/
${
sessionId
}
`
);
},
async
getRoles
():
Promise
<
Role
[]
>
{
return
await
fetch
.
getOrFail
(
'
/roles
'
);
async
getRolesByUser
(
userId
:
number
):
Promise
<
Roles
>
{
return
fetch
.
getOrFail
(
`/roomSessionUser/
${
userId
}
/role`
);
},
async
getModeBySession
(
sessionId
:
number
):
Promise
<
Mode
>
{
return
fetch
.
getOrFail
(
`/roomSession/
${
sessionId
}
/mode`
);
},
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment