mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Fixing naming
This commit is contained in:
@@ -137,7 +137,7 @@ type SessionStore interface {
|
||||
PermanentDeleteSessionsByUser(teamId string) StoreChannel
|
||||
UpdateLastActivityAt(sessionId string, time int64) StoreChannel
|
||||
UpdateRoles(userId string, roles string) StoreChannel
|
||||
UpdateDeviceId(sessionIdOrToken string, deviceId string) StoreChannel
|
||||
UpdateDeviceId(id string, deviceId string) StoreChannel
|
||||
}
|
||||
|
||||
type AuditStore interface {
|
||||
|
||||
@@ -103,7 +103,7 @@ export default class ActivityLogModal extends React.Component {
|
||||
} else if (currentSession.device_id.indexOf('apple:') === 0) {
|
||||
devicePicture = 'fa fa-apple';
|
||||
devicePlatform = 'iPhone Native App';
|
||||
} else if (currentSession.device_id.indexOf('Android:') === 0) {
|
||||
} else if (currentSession.device_id.indexOf('android:') === 0) {
|
||||
devicePlatform = 'Android Native App';
|
||||
devicePicture = 'fa fa-android';
|
||||
} else if (currentSession.props.platform === 'Macintosh' ||
|
||||
|
||||
Reference in New Issue
Block a user