Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions podme_api/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@
PodMeRegion.NO: "https://payment.schibsted.no",
PodMeRegion.SE: "https://login.schibsted.com",
PodMeRegion.FI: "https://login.schibsted.fi",
PodMeRegion.DK: "https://login.schibsted.dk",
}
PODME_AUTH_CLIENT_ID = {
PodMeRegion.NO: "62557b19f552881812b7431c",
PodMeRegion.SE: "62557c04db3a6b00de7d7a53",
PodMeRegion.FI: "62557b19f552881812b7431c", # TODO: Check
PodMeRegion.DK: "62557b19f552881812b7431c", # TODO: Check
PodMeRegion.FI: "625546a9db3a6b00de7d7a52",
}

DEFAULT_REQUEST_TIMEOUT = 15
Expand Down
1 change: 0 additions & 1 deletion podme_api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ class PodMeRegion(IntEnum):
SE = 1
NO = 2
FI = 3
DK = 4

def __repr__(self):
return self.name
Expand Down
Loading