express-cmd 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3cfe2def96e53a9a6a1241868ba17a0c0b9ddd0
|
4
|
+
data.tar.gz: 76b0e4781d98b7a3e71da9b7209ff6b9757f8730
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 881e3f59e01b2662df879fc0ae592faf54ca84be65e638749a1bc7a2bb3051e743fe4b9706d8cf80ba438e52dda81bdba04294d1f0c2d3ef777402abf4744d0c
|
7
|
+
data.tar.gz: 780abf57c018d6aa25e830e438dda64277fd31b061567c8f05ef0bdb516f4e24b0ec0b3169cf1d56829863789efa07103db9d969b469a580e5724ef59d45f80d
|
data/lib/express_cmd/version.rb
CHANGED
data/templates/lib/errors.js
CHANGED
@@ -20,7 +20,7 @@ var AuthError = (function (superClass) {
|
|
20
20
|
|
21
21
|
function AuthError(message) {
|
22
22
|
this.status = 401;
|
23
|
-
this.message = message || i18n.t('errorHandling.
|
23
|
+
this.message = message || i18n.t('errorHandling.unAuthorization');
|
24
24
|
AuthError.__super__.constructor.call(this, this.message);
|
25
25
|
}
|
26
26
|
|