From 8c695378c564ce8469a789264c9b1f7ba2c087f6 Mon Sep 17 00:00:00 2001 From: Jess Lee Date: Wed, 22 Aug 2018 12:48:45 -0400 Subject: [PATCH] Add issue levels doc (#414) --- docs/readme.md | 2 ++ docs/vocabulary.md | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 docs/vocabulary.md diff --git a/docs/readme.md b/docs/readme.md index aa5281e67..19af55deb 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -20,6 +20,8 @@ items: title: Installation Guide - path: liquid-tags.md title: Liquid Tags + - path: vocabulary.md + title: Vocabulary --- # Welcome to the dev.to documentation! diff --git a/docs/vocabulary.md b/docs/vocabulary.md new file mode 100644 index 000000000..4453253d7 --- /dev/null +++ b/docs/vocabulary.md @@ -0,0 +1,13 @@ +## Vocabulary / Team Jargon + +### Issue Levels + +* Level 1: Mission critical. Tends to impact all users. (i.e. production stuck in an infinite heroku deployment) + +* Level 2: Not mission critical but needs to be taken care of as quickly as possible. Tends to impact a subset of users. (i.e. form submission broken on mentorship settings) + +* Level 3: Issue that can wait until the next sprint planning, but definitely needs to be discussed. Often an edge case that sparks discussion -- is this a patch or do we need to re-architect something? (i.e. running out of memory where a few pages get 500 errors) + +* Level 4: Issue is not affecting users. Likely an internal tool that needs to be fixed. (i.e. slack notifications not pinging) + +* Level 5: Tech that stopped working but also isn't related to users/the site. (i.e. the gumball machine we use to generate random winners is broken)