Merge pull request #57 from bugout-dev/fix-slash-issue

Add slash ficing.
pull/58/head
Neeraj Kashyap 2021-08-03 10:45:06 -07:00 zatwierdzone przez GitHub
commit b20a95b0ac
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 8 usunięć

Wyświetl plik

@ -24,7 +24,7 @@ export const getTypes = () =>
export const getSubscriptions = () =>
http({
method: "GET",
url: `${API}/subscriptions`,
url: `${API}/subscriptions/`,
});
export const create = ({ address, note, blockchain }) => {
@ -79,10 +79,3 @@ export const deleteSubscription = () => (id) => {
url: `${API}/subscriptions/${id}`,
});
};
// export const getSubscriptions = (groupId) => {
// return http({
// method: "GET",
// url: `${API}/groups/${groupId}/subscriptions`,
// });
// };