Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
node_js:
- "6"
- "8"
script:
- ./build-js.sh
4 changes: 2 additions & 2 deletions SolutionInfo.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Reflection;

[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCopyright("Copyright 2016-2017 Ed Ball")]
[assembly: AssemblyCopyright("Copyright Ed Ball")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
20 changes: 10 additions & 10 deletions example/js/exampleApiServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ import * as express from 'express';
import { } from 'facility-core';

const standardErrorCodes = {
'notModified': 304,
'invalidRequest': 400,
'notAuthenticated': 401,
'notAuthorized': 403,
'notFound': 404,
'conflict': 409,
'requestTooLarge': 413,
'tooManyRequests': 429,
'internalError': 500,
'serviceUnavailable': 503,
'NotModified': 304,
'InvalidRequest': 400,
'NotAuthenticated': 401,
'NotAuthorized': 403,
'NotFound': 404,
'Conflict': 409,
'RequestTooLarge': 413,
'TooManyRequests': 429,
'InternalError': 500,
'ServiceUnavailable': 503,
};

function parseBoolean(value) {
Expand Down
Loading