-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1467 from bitholla/testnet
Testnet
- Loading branch information
Showing
88 changed files
with
15,878 additions
and
17,949 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
swagger: "2.0" | ||
info: | ||
version: "2.3.5" | ||
version: "2.3.6" | ||
title: HollaEx Kit | ||
host: api.hollaex.com | ||
basePath: /v2 | ||
|
1,196 changes: 12 additions & 1,184 deletions
1,196
server/db/migrations/20220331153221-update-email-field-network.js
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
'use strict'; | ||
const TABLE = 'Statuses'; | ||
const COLUMN = 'email'; | ||
|
||
const turkish = JSON.stringify(require('../../mail/strings/tr.json')); | ||
|
||
module.exports = { | ||
async up(queryInterface) { | ||
await queryInterface.sequelize.query( | ||
`UPDATE public."${TABLE}" | ||
SET ${COLUMN} = ${COLUMN} || '${turkish}' | ||
`); | ||
}, | ||
|
||
down: () => { | ||
return new Promise((resolve) => { | ||
resolve(); | ||
}); | ||
} | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.