Skip to content

Commit 2dcee26

Browse files
committed
Expose group tasks in backend
1 parent 9df48c6 commit 2dcee26

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

api.raml

+10
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,16 @@ baseUri: http://api.circular.work
318318
319319
320320
]
321+
},
322+
"relationships": {
323+
"tasks": {
324+
"data": [
325+
{
326+
"id": "1",
327+
"type": "tasks"
328+
}
329+
]
330+
}
321331
}
322332
}
323333
}

app/serializers/group_serializer.rb

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ class GroupSerializer < ActiveModel::Serializer
22
attributes :id, :name, :emails
33

44
belongs_to :organization
5+
has_many :tasks
56
end

0 commit comments

Comments
 (0)