Built files from Bizgaze WebServer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. var _appsettings = {
  2. authentication_url: function () { return ''; },
  3. server_url: function () {
  4. let appUrl = '';
  5. if (_appsettings.active_identity()) {
  6. if (_appsettings.active_identity().appUrl != undefined && _appsettings.active_identity().appUrl != null)
  7. appUrl = _appsettings.active_identity().appUrl;
  8. }
  9. return appUrl;
  10. },
  11. client_url: function () { return ''; },
  12. asset_url: function () { return ''; },
  13. notification_url: function () {
  14. return 'http://localhost:3088/notificationhub';
  15. },
  16. dochub_url: function () {
  17. return _appsettings.server_url() + '/unidochub';
  18. },
  19. chathub_url: function () {
  20. return _appsettings.server_url() + '/chathub';
  21. },
  22. theme: function () {
  23. return 'default';
  24. },
  25. active_form: function () {
  26. },
  27. active_identity: function () {
  28. return Unibase.Platform.Membership.Infos.Identity.getCurrentUser();
  29. },
  30. isdevelopement: function () {
  31. return true;
  32. }
  33. };
  34. var reportViewerSettings = {
  35. tableViewer: function () {
  36. return 'tabulatorviewer';
  37. },
  38. chartViewer: function () {
  39. return 'tabulatorviewer';
  40. }
  41. };
  42. var _mapsettings = {
  43. key: function () {
  44. return 'AIzaSyBGmahAAg3EVzAUJvttDZsjdZiJenJxGt8';
  45. }
  46. };
  47. var _windowsSettings = {
  48. AccessType: function () {
  49. return 'Server';
  50. }
  51. };