Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Timo Ley
synapse
Commits
5dd1a738
Commit
5dd1a738
authored
10 years ago
by
Emmanuel ROHEE
Browse files
Options
Downloads
Patches
Plain Diff
Use /rooms/$room_id/state/m.room.member/$user_id to change the membership of another user
parent
8a7c1d6a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
webclient/components/matrix/matrix-service.js
+13
-1
13 additions, 1 deletion
webclient/components/matrix/matrix-service.js
webclient/room/room-controller.js
+2
-2
2 additions, 2 deletions
webclient/room/room-controller.js
with
15 additions
and
3 deletions
webclient/components/matrix/matrix-service.js
+
13
−
1
View file @
5dd1a738
...
...
@@ -165,13 +165,25 @@ angular.module('matrixService', [])
// TODO: Use PUT with transaction IDs
return
doRequest
(
"
POST
"
,
path
,
undefined
,
data
);
},
// Change the membership of an another user
setMembership
:
function
(
room_id
,
user_id
,
membershipValue
)
{
// The REST path spec
var
path
=
"
/rooms/$room_id/state/m.room.member/$user_id
"
;
path
=
path
.
replace
(
"
$room_id
"
,
encodeURIComponent
(
room_id
));
path
=
path
.
replace
(
"
$user_id
"
,
user_id
);
return
doRequest
(
"
PUT
"
,
path
,
undefined
,
{
membership
:
membershipValue
});
},
// Bans a user from from a room
ban
:
function
(
room_id
,
user_id
,
reason
)
{
var
path
=
"
/rooms/$room_id/ban/
"
;
path
=
path
.
replace
(
"
$room_id
"
,
encodeURIComponent
(
room_id
));
return
doRequest
(
"
P
U
T
"
,
path
,
undefined
,
{
return
doRequest
(
"
P
OS
T
"
,
path
,
undefined
,
{
user_id
:
user_id
,
reason
:
reason
});
...
...
This diff is collapsed.
Click to expand it.
webclient/room/room-controller.js
+
2
−
2
View file @
5dd1a738
...
...
@@ -289,7 +289,7 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput'])
var
user_id
=
args
[
1
];
// Set his state in the room as leave
promise
=
matrixService
.
m
embership
Change
(
$scope
.
room_id
,
user_id
,
"
leave
"
);
promise
=
matrixService
.
setM
embership
(
$scope
.
room_id
,
user_id
,
"
leave
"
);
}
break
;
...
...
@@ -314,7 +314,7 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput'])
var
user_id
=
args
[
1
];
// Reset the user membership to leave to unban him
promise
=
matrixService
.
m
embership
Change
(
$scope
.
room_id
,
user_id
,
"
leave
"
);
promise
=
matrixService
.
setM
embership
(
$scope
.
room_id
,
user_id
,
"
leave
"
);
}
break
;
...
...
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