Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
arsnova-lite
Commits
c0e681ca
There was a problem fetching the latest pipeline status.
Verified
Commit
c0e681ca
authored
7 years ago
by
Lukas Maximilian Kimpel
Browse files
Options
Downloads
Patches
Plain Diff
Revert changes on user
parent
a75a4dd5
1 merge request
!74
API BASE BRANCH
Pipeline
#13686
passed with stage
in 34 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/create-comment/create-comment.component.ts
+2
-2
2 additions, 2 deletions
src/app/create-comment/create-comment.component.ts
src/app/room.service.ts
+1
-1
1 addition, 1 deletion
src/app/room.service.ts
with
3 additions
and
3 deletions
src/app/create-comment/create-comment.component.ts
+
2
−
2
View file @
c0e681ca
...
@@ -46,9 +46,9 @@ export class CreateCommentComponent implements OnInit {
...
@@ -46,9 +46,9 @@ export class CreateCommentComponent implements OnInit {
return
;
return
;
}
}
this
.
commentService
.
addComment
({
this
.
commentService
.
addComment
({
id
:
this
.
room
.
id
+
this
.
user
.
userI
d
,
id
:
this
.
room
.
id
+
this
.
user
.
i
d
,
roomId
:
this
.
room
.
id
,
roomId
:
this
.
room
.
id
,
userId
:
this
.
user
.
userI
d
,
userId
:
this
.
user
.
i
d
,
subject
:
subject
,
subject
:
subject
,
body
:
body
,
body
:
body
,
creationTimestamp
:
new
Date
(
Date
.
now
())
creationTimestamp
:
new
Date
(
Date
.
now
())
...
...
This diff is collapsed.
Click to expand it.
src/app/room.service.ts
+
1
−
1
View file @
c0e681ca
...
@@ -32,7 +32,7 @@ export class RoomService extends ErrorHandlingService {
...
@@ -32,7 +32,7 @@ export class RoomService extends ErrorHandlingService {
return
this
.
http
.
post
<
Room
[]
>
(
getRoomsUrl
,
{
return
this
.
http
.
post
<
Room
[]
>
(
getRoomsUrl
,
{
properties
:
{},
properties
:
{},
externalFilters
:
{
externalFilters
:
{
ownerId
:
this
.
authenticationService
.
getUser
().
userI
d
ownerId
:
this
.
authenticationService
.
getUser
().
i
d
}
}
},
httpOptions
);
},
httpOptions
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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