私のサーバー側APIが以下を実装しているとしましょう
GET /tournaments/1 # return a tournament data
POST /tournaments/1/seed # seed the tournament
DELETE /tournaments/1/seed # unseed the tournament
これをEmberデータモデルにどのように実装する必要がありますか?トーナメントがこのように見えるとすると
App.Tournament = DS.Model.extend({
name: DS.attr("string")
... bunch of stuff
});