Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Merge pull request #6 from codekiln/graphql_endpoint_-_read_chat_mess…
Browse files Browse the repository at this point in the history
…ages_#4

add graphql endpoint to read chat messages from a group - closes #4
  • Loading branch information
codekiln authored Jan 27, 2018
2 parents 178a449 + fd802d5 commit 4a22ed2
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ class Meta:
model = ChatGroup


class ChatMessageType(DjangoObjectType):
class Meta:
model = ChatMessage


class UserType(DjangoObjectType):
class Meta:
model = User
Expand Down

0 comments on commit 4a22ed2

Please sign in to comment.