Luke Barnard
|
7ec4010881
|
Make GroupStore use MatrixClientPeg
To avoid weirdness with using a cached matrix client
|
2017-11-28 11:54:05 +00:00 |
|
Luke Barnard
|
0799e5cde4
|
Refresh group member lists after inviting users
|
2017-10-23 16:04:26 +01:00 |
|
David Baker
|
ddf1017799
|
Make group invites work
|
2017-08-16 14:58:30 +01:00 |
|
David Baker
|
81273ec855
|
Move non-invite specific stuff to UserAddress
|
2017-08-15 13:42:23 +01:00 |
|
David Baker
|
7cfef04c1f
|
Remove other promise notify
|
2017-07-18 11:27:21 +01:00 |
|
David Baker
|
b261c89a63
|
Fix inviting multiple people to a room
Removes the promise notify as bluebird doesn't support it. It's
also not used anywhere now.
Fixes https://github.com/vector-im/riot-web/issues/4614
|
2017-07-18 11:11:42 +01:00 |
|
Richard van der Hoff
|
0d7cc59d99
|
replace q method calls with bluebird ones
```
find src test -name '*.js' |
xargs perl -i -pe 's/q\.(all|defer|reject|delay|try|isFulfilled)\(/Promise.$1(/'
```
|
2017-07-12 18:05:40 +01:00 |
|
Richard van der Hoff
|
a06bd84213
|
replace imports of q with bluebird
update `package.json`
```
find src test -name '*.js' |
xargs perl -i -pe 'if (/require\(.[qQ].\)/) { $_ = "import Promise from '\''bluebird'\'';\n"; }'
find src test -name '*.js' |
xargs perl -i -pe 'if (/import [qQ]/) { $_ = "import Promise from '\''bluebird'\'';\n"; }'
```
|
2017-07-12 18:05:08 +01:00 |
|
David Baker
|
2fd9e2a98f
|
Pull out multi-inviting from MultiInviteDialog
MultiInviteDialog would otherwise use this, but is about to go away, so it has been left.
|
2016-09-13 14:47:56 +01:00 |
|