Skip to content

Instantly share code, notes, and snippets.

@738

738/block1.js Secret

Created July 18, 2018 05:40
Show Gist options
  • Save 738/2bc9b71a121dac5656adb9cff9adb8ff to your computer and use it in GitHub Desktop.
Save 738/2bc9b71a121dac5656adb9cff9adb8ff to your computer and use it in GitHub Desktop.
// 투표 아이템을 등록
enroll(votingItem) {
// ...
}
// `id`에 해당하는 투표 아이템을 조회
get(id) {
// ...
}
// 모든 투표 아이템을 조회
getVotingList() {
// ...
}
// `id`에 해당하는 투표 아이템의 `index`에 투표
vote(id, index) {
// ...
}
// 투표 아이템을 등록한 유저가 투표 아이템을 제거
delete(id) {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment