Skip to content

Commit

Permalink
Add Geckoboard checker, release 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rust Saiargaliev committed Dec 30, 2020
1 parent dcb65a2 commit 2c82691
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [3.7.0] - 2020-12-30
### Added
- Geckoboard status checker

### Changed
- [Dev] Dependencies update

## [3.6.0] - 2020-11-18
### Added
- Python 3.9 support
Expand Down
2 changes: 1 addition & 1 deletion statuscheck/__about__.py
@@ -1,4 +1,4 @@
__author__ = "Rust Saiargaliev"
__email__ = "hi@amureki.me"
__url__ = "https://github.com/amureki/statuscheck"
__version__ = "3.6.0"
__version__ = "3.7.0"
1 change: 1 addition & 0 deletions statuscheck/services/__init__.py
Expand Up @@ -14,6 +14,7 @@
"discord",
"docker",
"gandi",
"geckoboard",
"github",
"gitlab",
"invision",
Expand Down
8 changes: 8 additions & 0 deletions statuscheck/services/geckoboard.py
@@ -0,0 +1,8 @@
from statuscheck.services.bases._statuspageio import BaseStatusPageAPI


class ServiceAPI(BaseStatusPageAPI):
name = "Geckoboard"
domain_id = "pbh1zz50vzz3"
status_url = "https://geckoboard.statuspage.io/"
service_url = "https://www.geckoboard.com/"

0 comments on commit 2c82691

Please sign in to comment.