mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
23 lines
481 B
JavaScript
23 lines
481 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
const rawUid = document
|
|
.getElementsByTagName('head')[0]
|
|
.getAttribute('data-user')
|
|
const displayName = document
|
|
.getElementsByTagName('head')[0]
|
|
.getAttribute('data-user-displayname')
|
|
|
|
export const currentUser = rawUid !== undefined ? rawUid : false
|
|
|
|
/**
|
|
*
|
|
*/
|
|
export function getCurrentUser() {
|
|
return {
|
|
uid: currentUser,
|
|
displayName,
|
|
}
|
|
}
|