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

[airavata-custos-portal] 06/09: Merge pull request #15 from isururanawaka/custos-tenant-portal

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

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

commit add79252c2d580e3bcbb0b0a99904949ee817cd6
Merge: a051b0a c42eda9
Author: Isuru Ranawaka <ir...@gmail.com>
AuthorDate: Sun Oct 4 15:23:56 2020 -0400

    Merge pull request #15 from isururanawaka/custos-tenant-portal
    
    Initial code of custos-tenant-portal

 .gitignore                                         |    3 +
 custos-demo-gateway/.dockerignore                  |   13 +
 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                  |    6 +
 custos-demo-gateway/.idea/workspace.xml            |  141 +
 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                     |   35 +
 custos-demo-gateway/package.json                   |   50 +
 custos-demo-gateway/public/favicon.ico             |  Bin 0 -> 4286 bytes
 custos-demo-gateway/public/index.html              |   17 +
 custos-demo-gateway/src/App.vue                    |   29 +
 custos-demo-gateway/src/assets/bots.png            |  Bin 0 -> 5228 bytes
 custos-demo-gateway/src/assets/credentials.png     |  Bin 0 -> 3332 bytes
 custos-demo-gateway/src/assets/custos_home.png     |  Bin 0 -> 44021 bytes
 custos-demo-gateway/src/assets/dblogs.png          |  Bin 0 -> 19538 bytes
 custos-demo-gateway/src/assets/groups_web.png      |  Bin 0 -> 2934 bytes
 custos-demo-gateway/src/assets/logo.png            |  Bin 0 -> 6849 bytes
 custos-demo-gateway/src/assets/sharings.png        |  Bin 0 -> 2417 bytes
 custos-demo-gateway/src/assets/users.png           |  Bin 0 -> 4824 bytes
 custos-demo-gateway/src/components/Callback.vue    |   86 +
 .../src/components/TheNavigator.vue                |   24 +
 .../src/components/landing/Landing.vue             |  229 +
 .../src/components/registration/CreateAccount.vue  |  206 +
 .../src/components/workspace/Agents.vue            |  295 +
 .../src/components/workspace/Groups.vue            |  653 ++
 .../src/components/workspace/Logs.vue              |  223 +
 .../src/components/workspace/Secrets.vue           |  355 +
 .../src/components/workspace/Sharing.vue           |  892 ++
 .../src/components/workspace/Users.vue             |  609 ++
 .../src/components/workspace/Workspace.vue         |  141 +
 custos-demo-gateway/src/config.js                  |   41 +
 custos-demo-gateway/src/main.js                    |   23 +
 custos-demo-gateway/src/router.js                  |  159 +
 .../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                |  157 +
 .../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               |  153 +
 .../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                      | 8534 +++++++++++++++++++
 61 files changed, 23459 insertions(+)