This file contains hidden or 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
Show hidden characters
| { | |
| "env": { | |
| "development": { | |
| "plugins": [ | |
| ["transform-builtin-extend", { | |
| "globals": ["Error"] | |
| }], | |
| "transform-runtime", | |
| "transform-es2015-classes", | |
| "transform-es2015-modules-commonjs" |
This file contains hidden or 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
| diff --git a/kinto/core/storage/postgresql/migrations/migration_019_hotfix.sql b/kinto/core/storage/postgresql/migrations/migration_019_hotfix.sql | |
| index 1795b55a..bab9234d 100644 | |
| --- a/kinto/core/storage/postgresql/migrations/migration_019_hotfix.sql | |
| +++ b/kinto/core/storage/postgresql/migrations/migration_019_hotfix.sql | |
| @@ -5,29 +5,36 @@ RETURNS trigger AS $$ | |
| DECLARE | |
| previous TIMESTAMP; | |
| current TIMESTAMP; | |
| + is_bucket BOOLEAN; | |
| BEGIN |
This file contains hidden or 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
| /* @flow */ | |
| export type ActionType = "hello"; | |
| export function action(): ActionType { | |
| return "hello"; | |
| } |
This file contains hidden or 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
| import base64 | |
| from cryptography.hazmat.backends import default_backend | |
| from cryptography.hazmat.primitives.asymmetric import ec as cryptography_ec | |
| from cryptography.hazmat.primitives.asymmetric.utils import encode_dss_signature | |
| from cryptography.hazmat.primitives.hashes import SHA384 | |
| from cryptography.hazmat.primitives.serialization import load_pem_public_key | |
| import ecdsa.util | |
| import ecdsa.curves | |
| import fastecdsa.ecdsa | |
| from fastecdsa.encoding.der import DEREncoder |
OlderNewer