Fixing naming
Этот коммит содержится в:
@@ -137,7 +137,7 @@ type SessionStore interface {
|
|||||||
PermanentDeleteSessionsByUser(teamId string) StoreChannel
|
PermanentDeleteSessionsByUser(teamId string) StoreChannel
|
||||||
UpdateLastActivityAt(sessionId string, time int64) StoreChannel
|
UpdateLastActivityAt(sessionId string, time int64) StoreChannel
|
||||||
UpdateRoles(userId string, roles string) StoreChannel
|
UpdateRoles(userId string, roles string) StoreChannel
|
||||||
UpdateDeviceId(sessionIdOrToken string, deviceId string) StoreChannel
|
UpdateDeviceId(id string, deviceId string) StoreChannel
|
||||||
}
|
}
|
||||||
|
|
||||||
type AuditStore interface {
|
type AuditStore interface {
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ export default class ActivityLogModal extends React.Component {
|
|||||||
} else if (currentSession.device_id.indexOf('apple:') === 0) {
|
} else if (currentSession.device_id.indexOf('apple:') === 0) {
|
||||||
devicePicture = 'fa fa-apple';
|
devicePicture = 'fa fa-apple';
|
||||||
devicePlatform = 'iPhone Native App';
|
devicePlatform = 'iPhone Native App';
|
||||||
} else if (currentSession.device_id.indexOf('Android:') === 0) {
|
} else if (currentSession.device_id.indexOf('android:') === 0) {
|
||||||
devicePlatform = 'Android Native App';
|
devicePlatform = 'Android Native App';
|
||||||
devicePicture = 'fa fa-android';
|
devicePicture = 'fa fa-android';
|
||||||
} else if (currentSession.props.platform === 'Macintosh' ||
|
} else if (currentSession.props.platform === 'Macintosh' ||
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user