Просмотр исходного кода

add copyright/license comments

pull/1/head
Jonathan Cobb 5 лет назад
Родитель
Сommit
f583e1975b
67 измененных файлов: 160 добавлений и 0 удалений
  1. +1
    -0
      src/_components/FieldDisplay.vue
  2. +1
    -0
      src/_components/FormField.vue
  3. +1
    -0
      src/_components/TotpModal.vue
  4. +4
    -0
      src/_helpers/index.js
  5. +4
    -0
      src/_helpers/router.js
  6. +4
    -0
      src/_helpers/util.js
  7. +4
    -0
      src/_services/accountPlan.service.js
  8. +4
    -0
      src/_services/app.service.js
  9. +4
    -0
      src/_services/bill.service.js
  10. +4
    -0
      src/_services/device.service.js
  11. +4
    -0
      src/_services/domain.service.js
  12. +4
    -0
      src/_services/footprint.service.js
  13. +4
    -0
      src/_services/index.js
  14. +4
    -0
      src/_services/network.service.js
  15. +4
    -0
      src/_services/paymentMethod.service.js
  16. +4
    -0
      src/_services/plan.service.js
  17. +4
    -0
      src/_services/system.service.js
  18. +4
    -0
      src/_services/user.service.js
  19. +4
    -0
      src/_store/account.module.js
  20. +4
    -0
      src/_store/accountPlans.module.js
  21. +4
    -0
      src/_store/alert.module.js
  22. +4
    -0
      src/_store/apps.module.js
  23. +4
    -0
      src/_store/bills.module.js
  24. +4
    -0
      src/_store/devices.module.js
  25. +4
    -0
      src/_store/domains.module.js
  26. +4
    -0
      src/_store/footprints.module.js
  27. +4
    -0
      src/_store/index.js
  28. +4
    -0
      src/_store/networks.module.js
  29. +4
    -0
      src/_store/paymentMethods.module.js
  30. +4
    -0
      src/_store/plans.module.js
  31. +4
    -0
      src/_store/system.module.js
  32. +4
    -0
      src/_store/users.module.js
  33. +1
    -0
      src/account/AppConfigPage.vue
  34. +1
    -0
      src/account/AppDataViewPage.vue
  35. +1
    -0
      src/account/AppPage.vue
  36. +1
    -0
      src/account/AppSitePage.vue
  37. +1
    -0
      src/account/AppsPage.vue
  38. +1
    -0
      src/account/DashboardPage.vue
  39. +1
    -0
      src/account/DevicesPage.vue
  40. +1
    -0
      src/account/HomePage.vue
  41. +1
    -0
      src/account/NetworkPage.vue
  42. +1
    -0
      src/account/NetworksPage.vue
  43. +1
    -0
      src/account/NewNetworkPage.vue
  44. +1
    -0
      src/account/NotificationsPage.vue
  45. +1
    -0
      src/account/payment/BillsPage.vue
  46. +1
    -0
      src/account/payment/FreePayment.vue
  47. +1
    -0
      src/account/payment/InviteCodePayment.vue
  48. +1
    -0
      src/account/payment/PaymentMethodsPage.vue
  49. +1
    -0
      src/account/payment/StripePayment.vue
  50. +1
    -0
      src/account/payment/UnknownPayment.vue
  51. +1
    -0
      src/account/profile/ActionPage.vue
  52. +1
    -0
      src/account/profile/ChangePasswordPage.vue
  53. +1
    -0
      src/account/profile/PolicyPage.vue
  54. +1
    -0
      src/account/profile/ProfilePage.vue
  55. +1
    -0
      src/account/profile/SetPasswordPage.vue
  56. +1
    -0
      src/account/profile/SshKeysPage.vue
  57. +1
    -0
      src/admin/AccountsPage.vue
  58. +1
    -0
      src/admin/ModelSetupPage.vue
  59. +1
    -0
      src/app/App.vue
  60. +1
    -0
      src/auth/ActivationPage.vue
  61. +1
    -0
      src/auth/LoginPage.vue
  62. +1
    -0
      src/auth/LogoutPage.vue
  63. +1
    -0
      src/auth/MultifactorAuthPage.vue
  64. +1
    -0
      src/auth/RegisterPage.vue
  65. +1
    -0
      src/index.html
  66. +4
    -0
      src/index.js
  67. +4
    -0
      webpack.config.js

+ 1
- 0
src/_components/FieldDisplay.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div v-if="field && thing[field.name] !== null && thing[field.name] !== ''">



+ 1
- 0
src/_components/FormField.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div v-if="field" class="form-group">



+ 1
- 0
src/_components/TotpModal.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div v-if="showTotpModal === true" class="totp-modal">
<h3>{{messages.form_title_totp_modal}}</h3>


+ 4
- 0
src/_helpers/index.js Просмотреть файл

@@ -1,2 +1,6 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
export * from './util';
export * from './router';

+ 4
- 0
src/_helpers/router.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import Vue from 'vue';
import Router from 'vue-router';



+ 4
- 0
src/_helpers/util.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';

let landingPage = null;


+ 4
- 0
src/_services/accountPlan.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';
// import { util.getWithAuth, util.putWithAuth, util.handleCrudResponse } from '../_helpers';


+ 4
- 0
src/_services/app.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';



+ 4
- 0
src/_services/bill.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';



+ 4
- 0
src/_services/device.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';



+ 4
- 0
src/_services/domain.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';



+ 4
- 0
src/_services/footprint.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';



+ 4
- 0
src/_services/index.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
export * from './system.service';
export * from './user.service';
export * from './domain.service';


+ 4
- 0
src/_services/network.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';



+ 4
- 0
src/_services/paymentMethod.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';



+ 4
- 0
src/_services/plan.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';



+ 4
- 0
src/_services/system.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';



+ 4
- 0
src/_services/user.service.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import config from 'config';
import { util } from '../_helpers';



+ 4
- 0
src/_store/account.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { userService } from '../_services';
import { router, util } from '../_helpers';



+ 4
- 0
src/_store/accountPlans.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { accountPlanService } from '../_services';
import { util } from '../_helpers';



+ 4
- 0
src/_store/alert.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
const state = {
type: null,
message: null


+ 4
- 0
src/_store/apps.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { appService } from '../_services';
import { util } from '../_helpers';



+ 4
- 0
src/_store/bills.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { billService } from '../_services';
import { util } from '../_helpers';



+ 4
- 0
src/_store/devices.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { deviceService } from '../_services';
import { util } from '../_helpers';



+ 4
- 0
src/_store/domains.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { domainService } from '../_services';
import { util } from '../_helpers';



+ 4
- 0
src/_store/footprints.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { footprintService } from '../_services';
import { util } from '../_helpers';



+ 4
- 0
src/_store/index.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import Vue from 'vue';
import Vuex from 'vuex';



+ 4
- 0
src/_store/networks.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { networkService } from '../_services';
import { accountPlanService } from '../_services';
import { util } from '../_helpers';


+ 4
- 0
src/_store/paymentMethods.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { paymentMethodService } from '../_services';
import { util } from '../_helpers';



+ 4
- 0
src/_store/plans.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { planService } from '../_services';
import { util } from '../_helpers';



+ 4
- 0
src/_store/system.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { systemService } from '../_services';
import { account } from "./account.module";
import { router, util } from "../_helpers";


+ 4
- 0
src/_store/users.module.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import { userService } from '../_services';
import { account } from '../_store/account.module';
import { util } from '../_helpers';


+ 1
- 0
src/account/AppConfigPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h3 v-if="app">{{messages['app_'+app.name+'_config_view_'+viewId]}}</h3>


+ 1
- 0
src/account/AppDataViewPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div v-if="app">
<h2>{{messages['app_'+app.name+'_name']}} - {{messages['app_'+app.name+'_view_'+viewId]}}</h2>


+ 1
- 0
src/account/AppPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<em v-if="loading()">{{messages.loading_app}}</em>


+ 1
- 0
src/account/AppSitePage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<em v-if="loading()">{{messages.loading_app_site}}</em>


+ 1
- 0
src/account/AppsPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<em v-if="loading()">{{messages.loading_apps}}</em>


+ 1
- 0
src/account/DashboardPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<table width="100%">
<tr>


+ 1
- 0
src/account/DevicesPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<em v-if="loading && loading.devices">{{messages.loading_devices}}</em>


+ 1
- 0
src/account/HomePage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<!-- <h1>{{messages.label_homepage_hello && messages.label_homepage_hello.parseMessage(this)}}</h1>-->


+ 1
- 0
src/account/NetworkPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div v-if="network">
<h4 v-if="network.state === 'running' && configs && configs.networkUuid && network.uuid !== configs.networkUuid">


+ 1
- 0
src/account/NetworksPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<em v-if="loading && loading.networks">{{messages.loading_networks}}</em>


+ 1
- 0
src/account/NewNetworkPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2>{{messages.form_title_new_network}}</h2>


+ 1
- 0
src/account/NotificationsPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
Notifications


+ 1
- 0
src/account/payment/BillsPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h4>{{messages.title_bills}}<span v-if="this.me === false"> - {{this.userId}}</span></h4>


+ 1
- 0
src/account/payment/FreePayment.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<form @submit.prevent="setFreePlay">
<div class="form-group">


+ 1
- 0
src/account/payment/InviteCodePayment.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<form @submit.prevent="setInviteCode">
<div class="form-group">


+ 1
- 0
src/account/payment/PaymentMethodsPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h5>{{messages.title_account_payment_methods}}</h5>


+ 1
- 0
src/account/payment/StripePayment.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div class="form-group">
<div class="form-control" ref="card"></div>


+ 1
- 0
src/account/payment/UnknownPayment.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div class="invalid-feedback d-block">
<h5>{{messages.message_payment_not_supported}}</h5>


+ 1
- 0
src/account/profile/ActionPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2>{{messages.message_action_processing}} {{messages['message_inbound_'+actionType]}} ...</h2>


+ 1
- 0
src/account/profile/ChangePasswordPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2>{{messages.form_title_change_password}}<span v-if="this.me === false"> - {{this.userId}}</span></h2>


+ 1
- 0
src/account/profile/PolicyPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<div v-if="inboundAction" :class="`alert ${inboundAction.alertType}`">


+ 1
- 0
src/account/profile/ProfilePage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2 v-if="newUser !== null && newUser === true">{{messages.title_account_new}}</h2>


+ 1
- 0
src/account/profile/SetPasswordPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2>{{messages.form_title_set_password}}</h2>


+ 1
- 0
src/account/profile/SshKeysPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h4>{{messages.form_title_ssh_keys}}<span v-if="this.me === false"> - {{this.userId}}</span></h4>


+ 1
- 0
src/admin/AccountsPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2>{{messages.table_title_accounts}}</h2>


+ 1
- 0
src/admin/ModelSetupPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2>{{messages.form_title_model_setup}}</h2>


+ 1
- 0
src/app/App.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div class="jumbotron">
<totp-modal/>


+ 1
- 0
src/auth/ActivationPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2>{{messages.form_title_activation}}</h2>


+ 1
- 0
src/auth/LoginPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2>{{messages.form_title_login}}</h2>


+ 1
- 0
src/auth/LogoutPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<h4>{{messages.message_logging_out}}</h4>
</template>


+ 1
- 0
src/auth/MultifactorAuthPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2>{{messages.form_title_multifactor_auth}}</h2>


+ 1
- 0
src/auth/RegisterPage.vue Просмотреть файл

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<template>
<div>
<h2>{{messages.form_title_register}}</h2>


+ 1
- 0
src/index.html Просмотреть файл

@@ -1,4 +1,5 @@
<!DOCTYPE html>
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<html lang="en">
<head>
<meta charset="UTF-8">


+ 4
- 0
src/index.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
import Vue from 'vue';
import VeeValidate from 'vee-validate';
import vSelect from 'vue-select'


+ 4
- 0
webpack.config.js Просмотреть файл

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
*/
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');



Загрузка…
Отмена
Сохранить