Skip to content

Commit

Permalink
fix: remove duplicates from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
sbgap committed Apr 22, 2024
1 parent 9e712a2 commit 4026512
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 51 deletions.
46 changes: 0 additions & 46 deletions alerta/database/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,52 +386,6 @@ def update_on_call(self, id, **kwargs):
def delete_on_call(self, id):
raise NotImplementedError

# NOTIFICATION CHANNELS

def create_notification_channel(self, notification_channel):
raise NotImplementedError

def get_notification_channel(self, id, customers=None):
raise NotImplementedError

def get_notification_channels(self, query=None, page=None, page_size=None):
raise NotImplementedError

def get_notification_channels_count(self, query=None):
raise NotImplementedError

def get_notification_channels_active(self, alert):
raise NotImplementedError

def update_notification_channel(self, id, **kwargs):
raise NotImplementedError

def delete_notification_channel(self, id):
raise NotImplementedError

# NOTIFICATION RULES

def create_notification_rule(self, notification_rule):
raise NotImplementedError

def get_notification_rule(self, id, customers=None):
raise NotImplementedError

def get_notification_rules(self, query=None, page=None, page_size=None):
raise NotImplementedError

def get_notification_rules_count(self, query=None):
raise NotImplementedError

def get_notification_rules_active(self, alert):
raise NotImplementedError

def update_notification_rule(self, id, **kwargs):
raise NotImplementedError

def delete_notification_rule(self, id):
raise NotImplementedError

# HEARTBEATS

def upsert_heartbeat(self, heartbeat):
Expand Down
6 changes: 1 addition & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Flask==3.0.3
Flask-Compress==1.14
Flask-Cors==4.0.0
mohawk==1.1.0
psycopg2-binary==2.9.9
psycopg2==2.9.9
PyJWT==2.8.0
pymongo==4.4.1
pyparsing==3.1.2
Expand All @@ -21,7 +21,3 @@ starkbank-ecdsa==1.0.0
StrEnum==0.4.15
twilio==7.0.0
werkzeug==3.0.2
sendgrid==6.5.0
python-http-client==3.2.1
starkbank-ecdsa==1.0.0
twilio==6.58.0

0 comments on commit 4026512

Please sign in to comment.