mirror of
https://github.com/opensupports/opensupports.git
synced 2025-07-31 01:35:15 +02:00
Adds log for user invitations
This commit is contained in:
parent
7eae717b0c
commit
18be18ebf8
@ -23,6 +23,7 @@ class ActivityRow extends React.Component {
|
|||||||
|
|
||||||
'EDIT_SETTINGS',
|
'EDIT_SETTINGS',
|
||||||
'SIGNUP',
|
'SIGNUP',
|
||||||
|
'INVITE',
|
||||||
'ADD_TOPIC',
|
'ADD_TOPIC',
|
||||||
'ADD_ARTICLE',
|
'ADD_ARTICLE',
|
||||||
'DELETE_TOPIC',
|
'DELETE_TOPIC',
|
||||||
@ -106,6 +107,7 @@ class ActivityRow extends React.Component {
|
|||||||
|
|
||||||
'EDIT_SETTINGS': 'wrench',
|
'EDIT_SETTINGS': 'wrench',
|
||||||
'SIGNUP': 'user-plus',
|
'SIGNUP': 'user-plus',
|
||||||
|
'INVITE': 'user-plus',
|
||||||
'ADD_TOPIC': 'book',
|
'ADD_TOPIC': 'book',
|
||||||
'ADD_ARTICLE': 'book',
|
'ADD_ARTICLE': 'book',
|
||||||
'DELETE_TOPIC': 'book',
|
'DELETE_TOPIC': 'book',
|
||||||
|
@ -234,6 +234,7 @@ export default {
|
|||||||
|
|
||||||
'ACTIVITY_EDIT_SETTINGS': 'edited settings',
|
'ACTIVITY_EDIT_SETTINGS': 'edited settings',
|
||||||
'ACTIVITY_SIGNUP': 'signed up',
|
'ACTIVITY_SIGNUP': 'signed up',
|
||||||
|
'ACTIVITY_INVITE': 'invited user',
|
||||||
'ACTIVITY_ADD_TOPIC': 'added topic',
|
'ACTIVITY_ADD_TOPIC': 'added topic',
|
||||||
'ACTIVITY_ADD_ARTICLE': 'added article',
|
'ACTIVITY_ADD_ARTICLE': 'added article',
|
||||||
'ACTIVITY_DELETE_TOPIC': 'deleted topic',
|
'ACTIVITY_DELETE_TOPIC': 'deleted topic',
|
||||||
|
@ -102,7 +102,8 @@ class InviteUserController extends Controller {
|
|||||||
'userId' => $userId,
|
'userId' => $userId,
|
||||||
'userEmail' => $this->userEmail
|
'userEmail' => $this->userEmail
|
||||||
]);
|
]);
|
||||||
// TODO: Log::createLog('SIGN_UP', null, User::getDataStore($userId));
|
|
||||||
|
Log::createLog('INVITE', $this->userName);
|
||||||
} else {
|
} else {
|
||||||
throw new RequestException(ERRORS::MAIL_SENDER_NOT_CONNECTED);
|
throw new RequestException(ERRORS::MAIL_SENDER_NOT_CONNECTED);
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@ class Log extends DataStore {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function createLog($type,$to, $author = null) {
|
public static function createLog($type, $to, $author = null) {
|
||||||
if($author === null) {
|
if($author === null) {
|
||||||
$author = Controller::getLoggedUser();
|
$author = Controller::getLoggedUser();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user