You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sm...@apache.org on 2020/10/14 00:18:14 UTC

[airavata-custos-portal] 01/01: Merge pull request #59 from apache/ux-improvement

This is an automated email from the ASF dual-hosted git repository.

smarru pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-custos-portal.git

commit 392498999814b3374181577e8df550e7ccbac063
Merge: a051b0a 3a0cfb4
Author: Suresh Marru <sm...@apache.org>
AuthorDate: Tue Oct 13 20:18:05 2020 -0400

    Merge pull request #59 from apache/ux-improvement
    
    Merging UX-Improvement Branch into Master

 .gitignore                                         |    3 +
 custos-demo-gateway/.dockerignore                  |   14 +
 custos-demo-gateway/.env                           |    3 +
 custos-demo-gateway/.idea/custos-demo-gateway.iml  |    8 +
 .../.idea/inspectionProfiles/Project_Default.xml   |    6 +
 custos-demo-gateway/.idea/misc.xml                 |    9 +
 custos-demo-gateway/.idea/modules.xml              |    8 +
 custos-demo-gateway/.idea/vcs.xml                  |    7 +
 custos-demo-gateway/.idea/workspace.xml            |  136 +
 custos-demo-gateway/Dockerfile                     |   19 +
 custos-demo-gateway/README.md                      |   24 +
 custos-demo-gateway/babel.config.js                |    5 +
 custos-demo-gateway/docker-compose.yml             |   11 +
 custos-demo-gateway/entrypoint.sh                  |   18 +
 custos-demo-gateway/fullchain.pem                  |   59 +
 custos-demo-gateway/nginx.conf                     |   57 +
 custos-demo-gateway/package.json                   |   50 +
 .../public/custos-logo_custos-logomark-color.png   |  Bin 0 -> 749 bytes
 custos-demo-gateway/public/favicon.ico             |  Bin 0 -> 28747 bytes
 custos-demo-gateway/public/index.html              |   17 +
 custos-demo-gateway/src/App.vue                    |   28 +
 custos-demo-gateway/src/assets/bots.png            |  Bin 0 -> 35160 bytes
 custos-demo-gateway/src/assets/credentials.png     |  Bin 0 -> 25037 bytes
 .../assets/custos-logo_custos-logo-color-v1.png    |  Bin 0 -> 3084 bytes
 custos-demo-gateway/src/assets/custos_home.png     |  Bin 0 -> 44021 bytes
 custos-demo-gateway/src/assets/dblogs.png          |  Bin 0 -> 50013 bytes
 custos-demo-gateway/src/assets/groups_web.png      |  Bin 0 -> 57778 bytes
 custos-demo-gateway/src/assets/logo.png            |  Bin 0 -> 6849 bytes
 custos-demo-gateway/src/assets/sharings.png        |  Bin 0 -> 44305 bytes
 custos-demo-gateway/src/assets/users.png           |  Bin 0 -> 68955 bytes
 custos-demo-gateway/src/components/Callback.vue    |   58 +
 custos-demo-gateway/src/components/Header.vue      |  223 +
 custos-demo-gateway/src/components/Password.vue    |   45 +
 .../src/components/landing/Landing.vue             |  215 +
 .../src/components/registration/CreateAccount.vue  |  317 +
 .../src/components/workspace/Agents.vue            |  348 +
 .../src/components/workspace/Groups.vue            |  693 ++
 .../src/components/workspace/Logs.vue              |  220 +
 .../src/components/workspace/Profile.vue           |  336 +
 .../src/components/workspace/Secrets.vue           |  389 +
 .../src/components/workspace/Sharing.vue           | 1006 +++
 .../src/components/workspace/Users.vue             |  705 ++
 .../src/components/workspace/Workspace.vue         |  104 +
 custos-demo-gateway/src/config.js                  |   41 +
 custos-demo-gateway/src/main.js                    |   24 +
 custos-demo-gateway/src/router.js                  |  178 +
 .../src/service/agent_management.js                |  116 +
 custos-demo-gateway/src/service/api.js             |   12 +
 custos-demo-gateway/src/service/auth.js            |   96 +
 .../src/service/group_management.js                |  191 +
 .../src/service/identity_management.js             |   55 +
 custos-demo-gateway/src/service/log_management.js  |   36 +
 .../src/service/secret_management.js               |   98 +
 .../src/service/sharing_management.js              |  198 +
 custos-demo-gateway/src/service/user_management.js |  161 +
 custos-demo-gateway/src/store/index.js             |   29 +
 .../src/store/modules/agent.store.js               |  155 +
 .../src/store/modules/group.store.js               |  178 +
 .../src/store/modules/identity.store.js            |  134 +
 custos-demo-gateway/src/store/modules/log.store.js |   46 +
 .../src/store/modules/secret.store.js              |  116 +
 .../src/store/modules/sharing.store.js             |  227 +
 .../src/store/modules/user.store.js                |  149 +
 custos-demo-gateway/yarn-error.log                 | 8587 ++++++++++++++++++++
 custos-demo-gateway/yarn.lock                      | 8539 +++++++++++++++++++
 65 files changed, 24507 insertions(+)