ArchBlood
ArchBlood
Please note that this is using the develop branch which is setup for v1.16.x
See the following variables that were added in v1.16.x; https://github.com/humhub/humhub/blob/d216e221ae4c288439af6794bf5bdc9e9e02173d/protected/humhub/modules/user/Module.php#L162-L194
As for a test I've ran one personally with the latest changes in the develop branch and see no issues currently; The issue here was the else statement was always...
@yurabakhtin when you have the time can you look over the P/R in case I made any mistakes?
> @ArchBlood Unfortunately, I have only now had time to look into the error in more detail. > > The error `'Registration failed: No token (query) or authclient (session) found!'`...
@luke- why not do something like this in the rest module itself? ```php use yii\base\Security; public function actionImpersonate() { if (!Yii::$app->user->isAdmin()) { throw new ForbiddenHttpException(); } $userId = Yii::$app->request->getBodyParam('userId'); $user...
Overall the tasks module isn't very mobile friendly currently so it could be an issue within the tasks module itself as well, see the following issue https://github.com/humhub/tasks/issues/252.
I believe this would be a great module idea, I say this due to already creating a module based on User-Agents, with some refactoring I could probably implement such a...
Here's a demo implementation through a module; 
Currently where no license is placed you can assume that a No License is in place here; https://choosealicense.com/no-permission/ But I'm sure that in the future an AGPL would be applied...