blob: e629915f5ca4abbd53aea89ac8feebc00e329475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
### multi method tags
```perl6
multi method tags(
Str $room-id,
Str:D $tag,
$order
) returns Mu
```
PUT - /_matrix/client/r0/user/{userId}/rooms/{roomId}/tags/{tag}
### multi method tags
```perl6
multi method tags(
Str $room-id
) returns Mu
```
GET - /_matrix/client/r0/user/{userId}/rooms/{roomId}/tags
### method remove-tag
```perl6
method remove-tag(
Str $room-id,
Str:D $tag
) returns Mu
```
DELETE - /_matrix/client/r0/user/{userId}/rooms/{roomId}/tags/{tag}
|