From 158856bebd1d989c8e98a119e51827f32a4ac5d2 Mon Sep 17 00:00:00 2001 From: jetexe Date: Fri, 10 Jul 2020 19:38:26 +0500 Subject: [PATCH] Add 418 error (#2) * Update config.json Add 418 error * Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ config.json | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6301f6..bd3c9e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver]. +## Unreleased + +### Added + +- 418 status code error page + ## v1.2.0 ### Fixed diff --git a/config.json b/config.json index b822ff5..e1d862d 100644 --- a/config.json +++ b/config.json @@ -82,6 +82,11 @@ "message": "Requested Range Not Satisfiable", "description": "The requested byte range is not available and is out of bounds" }, + { + "code": 418, + "message": "I'm a teapot", + "description": "Attempt to brew coffee with a teapot is not supported" + }, { "code": 429, "message": "Too Many Requests",