feat(can): 캔 등록시 결제 화폐단위 추가
This commit is contained in:
@@ -8,8 +8,8 @@ async function getCans() {
|
||||
return Vue.axios.get('/can');
|
||||
}
|
||||
|
||||
async function insertCan(can, rewardCan, price) {
|
||||
const request = {can: can, rewardCan: rewardCan, price: price}
|
||||
async function insertCan(can, rewardCan, price, currency) {
|
||||
const request = {can: can, rewardCan: rewardCan, price: price, currency}
|
||||
return Vue.axios.post('/admin/can', request);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user