This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/npm_and_yarn/postcss-7.0.39
in repository https://gitbox.apache.org/repos/asf/airavata-custos-portal.git
omit 987dabe Bump postcss from 7.0.32 to 7.0.39
add 83e1642 Updated
add 97d3072 Updated
add a16e419 Updated
add bcf419a Updated
add 57016ab Refactoring
add 6c38fc1 Updated
add 62230a1 Adding maintenance page
add aabab9f Refactoring
add 9997c19 Merge pull request #153 from
dinukadesilva/adding-maintenance-page
add 73c2236 Fixed the sharing endpoint
add 301a7db Merge pull request #157 from
dinukadesilva/adding-maintenance-page
add 52f2c48 Updated docker configs
add 2371b61 Merge pull request #158 from
dinukadesilva/adding-maintenance-page
add 3b94a85 Update maintenance page styles and text
add 114a2c5 Merge pull request #159 from
dinukadesilva/adding-maintenance-page
add 250a9a5 Django generate project and app files
add e40e6ce Integrated webpack build into django template
add 6be3c11 fix hot module reload
add dc49507 Node 14 is required
add 367adf5 Load environment variables in settings.py
add d417a68 Add Gunicorn to Nginx/Docker setup
add cea6031 leave default ALLOWED_HOSTS empty, works well with DEBUG=True
add b6b0a8e Documenting how to run the django server locally
add 0b4048f Adding a simple Django REST API endpoint
add 09fdba3 gh-160: Adding the proxy for custos endpoints
add a349682 Adding custom headers to data to custos endpoints
add 1e88053 Adding all of the frontend routes
add 7edf6f8 Fix auth logics in the javascript
add af8e490 Fix tenant create tab navigation
add e9492f6 Updated
add 864e441 Fix tenant create
add b88dfc5 Adding the necessary changes to make the portal an
installable package
add 6d3e477 Refactoring the folder structure
add d1589a9 Refactoring
add 9b57ad1 Updated the readme
add ddea6d5 Update the setup modules
add e4c75e9 Updated
add d408e20 Adding the maintenance page
add 096f10e Fix environment variables
add f944745 Refactoring
add f8f8335 Merge pull request #167 from
dinukadesilva/gh-160-adding-django-layer
add 7d96405 Bump postcss from 7.0.32 to 7.0.39
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (987dabe)
\
N -- N -- N refs/heads/dependabot/npm_and_yarn/postcss-7.0.39
(7d96405)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.dockerignore | 3 +-
.env | 18 +-
.gitignore | 6 +
.nvmrc | 1 +
Dockerfile | 25 +-
LICENSE | 201 +
README.md | 104 +-
airavata_custos_portal/__init__.py | 0
airavata_custos_portal/apps/__init__.py | 0
airavata_custos_portal/apps/api/__init__.py | 0
airavata_custos_portal/apps/api/admin.py | 3 +
airavata_custos_portal/apps/api/apps.py | 6 +
.../apps/api/migrations/__init__.py | 0
airavata_custos_portal/apps/api/models.py | 3 +
airavata_custos_portal/apps/api/tests.py | 3 +
airavata_custos_portal/apps/api/urls.py | 10 +
airavata_custos_portal/apps/api/views.py | 191 +
airavata_custos_portal/apps/frontend/__init__.py | 0
airavata_custos_portal/apps/frontend/admin.py | 3 +
airavata_custos_portal/apps/frontend/apps.py | 6 +
.../apps/frontend/migrations/__init__.py | 0
airavata_custos_portal/apps/frontend/models.py | 3 +
.../airavata_custos_portal_frontend/index.html | 29 +
airavata_custos_portal/apps/frontend/tests.py | 3 +
airavata_custos_portal/apps/frontend/urls.py | 28 +
airavata_custos_portal/apps/frontend/views.py | 13 +
airavata_custos_portal/asgi.py | 16 +
airavata_custos_portal/settings.py | 166 +
airavata_custos_portal/urls.py | 24 +
airavata_custos_portal/wsgi.py | 16 +
docker-compose.yml | 8 +
entrypoint.sh | 26 +-
manage.py | 22 +
nginx.conf | 62 +-
package-lock.json | 13319 -------------------
package.json | 9 +-
requirements.txt | 6 +
setup.cfg | 12 +
setup.py | 46 +
src/App.vue | 18 +-
src/config.js | 11 +-
src/lib/components/pages/Landing.vue | 6 +-
src/lib/components/pages/Maintenance.vue | 29 +
src/lib/components/pages/NewTenant.vue | 6 +-
src/lib/service/custos-portal-services/index.js | 16 +
.../custos-service-entities-secrets-password.js | 4 +-
.../custos-service-entities-secrets-ssh.js | 4 +-
.../custos-service-entities-secrets.js | 2 +-
.../custos-service-entities/index.js | 10 +-
.../custos-service/custos-service-groups.js | 48 +-
.../custos-service/custos-service-identity.js | 89 +-
.../custos-service/custos-service-sharing.js | 23 +-
.../custos-service/custos-service-tenants.js | 24 +-
.../service/custos-service/custos-service-users.js | 33 +-
src/lib/service/custos-service/index.js | 89 +-
src/lib/store/modules/auth.store.js | 129 +-
src/lib/store/modules/sharing.store.js | 4 +-
src/lib/store/modules/tenant.store.js | 13 -
src/lib/store/util/custos.util.js | 2 -
src/lib/store/util/index.js | 2 +-
src/lib/store/util/jwt.util.js | 26 -
src/router.js | 14 +-
vue.config.js | 26 +
yarn.lock | 43 +-
64 files changed, 1309 insertions(+), 13753 deletions(-)
create mode 100644 .nvmrc
create mode 100644 LICENSE
create mode 100644 airavata_custos_portal/__init__.py
create mode 100644 airavata_custos_portal/apps/__init__.py
create mode 100644 airavata_custos_portal/apps/api/__init__.py
create mode 100644 airavata_custos_portal/apps/api/admin.py
create mode 100644 airavata_custos_portal/apps/api/apps.py
create mode 100644 airavata_custos_portal/apps/api/migrations/__init__.py
create mode 100644 airavata_custos_portal/apps/api/models.py
create mode 100644 airavata_custos_portal/apps/api/tests.py
create mode 100644 airavata_custos_portal/apps/api/urls.py
create mode 100644 airavata_custos_portal/apps/api/views.py
create mode 100644 airavata_custos_portal/apps/frontend/__init__.py
create mode 100644 airavata_custos_portal/apps/frontend/admin.py
create mode 100644 airavata_custos_portal/apps/frontend/apps.py
create mode 100644 airavata_custos_portal/apps/frontend/migrations/__init__.py
create mode 100644 airavata_custos_portal/apps/frontend/models.py
create mode 100644
airavata_custos_portal/apps/frontend/templates/airavata_custos_portal_frontend/index.html
create mode 100644 airavata_custos_portal/apps/frontend/tests.py
create mode 100644 airavata_custos_portal/apps/frontend/urls.py
create mode 100644 airavata_custos_portal/apps/frontend/views.py
create mode 100644 airavata_custos_portal/asgi.py
create mode 100644 airavata_custos_portal/settings.py
create mode 100644 airavata_custos_portal/urls.py
create mode 100644 airavata_custos_portal/wsgi.py
create mode 100755 manage.py
delete mode 100644 package-lock.json
create mode 100644 requirements.txt
create mode 100644 setup.cfg
create mode 100644 setup.py
create mode 100644 src/lib/components/pages/Maintenance.vue
create mode 100644 src/lib/service/custos-portal-services/index.js
delete mode 100644 src/lib/store/util/jwt.util.js
create mode 100644 vue.config.js