mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
15 lines
263 B
JavaScript
15 lines
263 B
JavaScript
import { c } from "tar"
|
|
|
|
export const getCurrentUser = function() {
|
|
return {
|
|
uid: 'test',
|
|
displayName: 'Test',
|
|
isAdmin: false,
|
|
}
|
|
}
|
|
|
|
export const getRequestToken = function() {
|
|
return 'test-token-1234'
|
|
}
|
|
|
|
export const onRequestTokenUpdate = function() {}
|