/
githubmirror
/
drawio
Обзор
Документация
Войти
/
githubmirror
/
drawio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/main/webapp/js/diagramly/DrawioUser.js
21 строка
481 B
David Benson
28.2.0 release
05 сен 2025, 20:29
05 сен 2025, 20:29
947271f
Код
Авторство
О чём код?
/** * Copyright (c) 2006-2017, JGraph Holdings Ltd * Copyright (c) 2006-2017, draw.io AG */ DrawioUser = function(id, email, displayName, pictureUrl, locale) { // Unique ID of the user for the current storage system this.id = id; // Email address of the user this.email = email; // Display name of the user this.displayName = displayName; // URL to an image of the user this.pictureUrl = pictureUrl; // country code locale of the user this.locale = locale; };