Skip to content

Commit

Permalink
add Airtable
Browse files Browse the repository at this point in the history
  • Loading branch information
alisalahio committed Mar 10, 2021
1 parent a53e64e commit 148458a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/services/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Freecodecamp from './instatus/freecodecamp'

// Statuspage services
import Acquia from './statuspage/acquia'
import Airtable from './statuspage/airtable'
import AmazeeIO from './statuspage/amazeeio'
import Aptible from './statuspage/aptible'
import Asana from './statuspage/asana'
Expand Down Expand Up @@ -147,6 +148,7 @@ const allServices = new Map<string, Service>([

// Statuspage pages
['Acquia', new Acquia()],
['Airtable', new Airtable()],
['AmazeeIO', new AmazeeIO()],
['Aptible', new Aptible()],
['Asana', new Asana()],
Expand Down
9 changes: 9 additions & 0 deletions src/services/statuspage/airtable.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import StatusPageService from '../base/statuspage'

class Airtable extends StatusPageService {
constructor() {
super('Airtable', 'https://status.airtable.com/', '5vv477bkm0kl')
}
}

export default Airtable

0 comments on commit 148458a

Please sign in to comment.