├── shared ├── usersProfile.js └── usersCollection.js ├── .meteor ├── .gitignore ├── release ├── platforms ├── .id ├── .finished-upgraders ├── packages └── versions ├── client ├── common │ ├── content.html │ ├── sidebar.js │ ├── navbar.js │ ├── footer.html │ ├── user_accounts.html │ ├── sidebar.html │ └── navbar.html ├── lib │ ├── helpersInit.js │ ├── style.css │ ├── flowRouter.js │ └── globalHelpers.js ├── configuration │ ├── formServices.html │ ├── formServices.js │ ├── _listOfRoles.js │ ├── _listOfRoles.html │ ├── configuration.html │ └── configuration.js ├── assets │ └── less │ │ ├── app.less │ │ └── login-page.import.less ├── index.html ├── dashboard │ ├── dashboard.js │ └── dashboard.html ├── calendar │ ├── calendar.js │ └── calendar.html ├── layouts │ ├── AdminLte2.js │ └── AdminLte2.html ├── permissions │ ├── permissions.html │ └── permissions.js └── profile │ ├── myprofile.html │ └── myprofile.js ├── public └── images │ ├── not_image.png │ ├── inovati_logo.png │ └── openjur_logo.png ├── lib ├── languages │ ├── project-tap.i18n │ └── tap-i18n │ │ ├── roles.en.i18n.json │ │ └── roles.pt-BR.i18n.json ├── rolesTree.js ├── languages.js └── at_config.js ├── server ├── methods │ └── permissionsMethods.js ├── UsersPublisher.js └── accountsConfig.js ├── README.md └── LICENSE /shared/usersProfile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /client/common/content.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/common/sidebar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/lib/helpersInit.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.3 2 | -------------------------------------------------------------------------------- /client/configuration/formServices.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/configuration/formServices.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /client/lib/style.css: -------------------------------------------------------------------------------- 1 | .datepicker { 2 | z-index: 1031 !important; 3 | } 4 | -------------------------------------------------------------------------------- /client/assets/less/app.less: -------------------------------------------------------------------------------- 1 | @white: #FFFFFF; 2 | 3 | @import "login-page.import.less"; 4 | 5 | -------------------------------------------------------------------------------- /public/images/not_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inovatitecnologia/OpenJur/HEAD/public/images/not_image.png -------------------------------------------------------------------------------- /public/images/inovati_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inovatitecnologia/OpenJur/HEAD/public/images/inovati_logo.png -------------------------------------------------------------------------------- /public/images/openjur_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inovatitecnologia/OpenJur/HEAD/public/images/openjur_logo.png -------------------------------------------------------------------------------- /client/configuration/_listOfRoles.js: -------------------------------------------------------------------------------- 1 | Template._listOfRoles.helpers({ 2 | getRoleName: function(roleKey) { 3 | return RolesTree.getRole(roleKey).name; 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 |
12 |