mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-08-04 14:37:34 +00:00
Fix DO wording
This commit is contained in:
parent
fad667fd71
commit
a9ef2b7b09
3 changed files with 3 additions and 3 deletions
|
|
@ -98,7 +98,7 @@ export function isValidServerReport(testObject: any): boolean {
|
|||
|
||||
const requiredUserReportFields = ['userId', 'countries', 'bytesTransferred'];
|
||||
const MIN_BYTES_TRANSFERRED = 0;
|
||||
const MAX_BYTES_TRANSFERRED = 500 * Math.pow(2, 30); // 500 GB.
|
||||
const MAX_BYTES_TRANSFERRED = 1 * Math.pow(2, 40); // 1 TB.
|
||||
for (const userReport of testObject.userReports) {
|
||||
// Test that each userReport contains valid fields.
|
||||
for (const fieldName of requiredUserReportFields) {
|
||||
|
|
|
|||
|
|
@ -271,7 +271,7 @@ function updateUIForRegistration() {
|
|||
hideBySelector('.logo');
|
||||
hideBySelector('.registration-message');
|
||||
const bannerText =
|
||||
'Sign up with DigitalOcean to get a server with 500 GB of data transfer for $5 USD per month. Cancel at anytime.';
|
||||
'Sign up with DigitalOcean to get a server with 1 TB of data transfer for $5 USD per month. Cancel at anytime.';
|
||||
addDigitalOceanSignupBanner(bannerText);
|
||||
addDigitalOceanFooter();
|
||||
// Add topMargin to #new_user
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@
|
|||
<ul>
|
||||
<li>Easiest setup process</li>
|
||||
<li>Only $5 a month</li>
|
||||
<li>500 GB of data transfer</li>
|
||||
<li>1 TB of data transfer</li>
|
||||
<li>Cancel at anytime</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue