We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e2fcf0 commit 64964c4Copy full SHA for 64964c4
1 file changed
src/Payments/index.js
@@ -4,16 +4,16 @@ class Payment {
4
}
5
6
read (id) {
7
- return this.axiosInstance.get(`/payments/${id}`)
+ return this.axiosInstance.get(`/payments/read/${id}`)
8
9
10
create (params) {
11
return this.axiosInstance.post('/payments/create', params)
12
13
14
- delete (id) {
+/* delete (id) {
15
return this.axiosInstance.delete(`/payments/${id}`)
16
- }
+ }*/
17
18
19
module.exports = Payment
0 commit comments