Moved TODO entries to GitHub's issue tracker
Signed-off-by: Gergely Polonkai <polesz@w00d5t0ck.info>
This commit is contained in:
15
src/KekRozsak/FrontBundle/Entity/BlogPost.php
Normal file
15
src/KekRozsak/FrontBundle/Entity/BlogPost.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/*
|
||||
* id
|
||||
* title
|
||||
* slug
|
||||
* createdBy
|
||||
* createdAt
|
||||
* updatedBy
|
||||
* updatedAt
|
||||
* updateReason
|
||||
* lead(?)
|
||||
* content
|
||||
* public
|
||||
* Group (can be NULL)
|
||||
*/
|
13
src/KekRozsak/FrontBundle/Entity/Comment.php
Normal file
13
src/KekRozsak/FrontBundle/Entity/Comment.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
/*
|
||||
* Required for the commentable interface
|
||||
*
|
||||
* id
|
||||
* createdBy
|
||||
* createdAt
|
||||
* updatedBy
|
||||
* updatedAt
|
||||
* updateReason
|
||||
* title (nullable)
|
||||
* content
|
||||
*/
|
8
src/KekRozsak/FrontBundle/Entity/GroupChatMessage.php
Normal file
8
src/KekRozsak/FrontBundle/Entity/GroupChatMessage.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/*
|
||||
* id
|
||||
* from
|
||||
* group
|
||||
* timestamp
|
||||
* content
|
||||
*/
|
15
src/KekRozsak/FrontBundle/Entity/Poll.php
Normal file
15
src/KekRozsak/FrontBundle/Entity/Poll.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/*
|
||||
* id
|
||||
* createdBy
|
||||
* createdAt
|
||||
* updatedBy
|
||||
* updatedAt
|
||||
* updateReason
|
||||
* endTime (date/datetime?)
|
||||
* anyoneCanAddAnswers
|
||||
* question
|
||||
* multiselect
|
||||
* voters(?)
|
||||
* answers
|
||||
*/
|
11
src/KekRozsak/FrontBundle/Entity/PollAnswer.php
Normal file
11
src/KekRozsak/FrontBundle/Entity/PollAnswer.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
/*
|
||||
* id
|
||||
* createdBy
|
||||
* createdAt
|
||||
* updatedBy
|
||||
* updatedAt
|
||||
* updateReason
|
||||
* voters
|
||||
* text
|
||||
*/
|
8
src/KekRozsak/FrontBundle/Entity/PrivateChatMessage.php
Normal file
8
src/KekRozsak/FrontBundle/Entity/PrivateChatMessage.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/*
|
||||
* id
|
||||
* from
|
||||
* to
|
||||
* timestamp
|
||||
* content
|
||||
*/
|
5
src/KekRozsak/FrontBundle/Entity/PublicChatChannel.php
Normal file
5
src/KekRozsak/FrontBundle/Entity/PublicChatChannel.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
/*
|
||||
* id
|
||||
* name
|
||||
*/
|
8
src/KekRozsak/FrontBundle/Entity/PublicChatMessage.php
Normal file
8
src/KekRozsak/FrontBundle/Entity/PublicChatMessage.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/*
|
||||
* id
|
||||
* from
|
||||
* channel
|
||||
* timestamp
|
||||
* content
|
||||
*/
|
12
src/KekRozsak/FrontBundle/Entity/Song.php
Normal file
12
src/KekRozsak/FrontBundle/Entity/Song.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
/*
|
||||
* id
|
||||
* title
|
||||
* slug
|
||||
* createdBy
|
||||
* createdAt
|
||||
* updatedBy
|
||||
* updatedAtt
|
||||
* updateReason
|
||||
* versions
|
||||
*/
|
9
src/KekRozsak/FrontBundle/Entity/SongVersion.php
Normal file
9
src/KekRozsak/FrontBundle/Entity/SongVersion.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/*
|
||||
* id
|
||||
* createdBy
|
||||
* createdAt
|
||||
* updatedBy
|
||||
* updatedAt
|
||||
* updateReason
|
||||
* content
|
6
src/KekRozsak/FrontBundle/Entity/UserForumTopicView.php
Normal file
6
src/KekRozsak/FrontBundle/Entity/UserForumTopicView.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
/*
|
||||
* User
|
||||
* ForumTopic
|
||||
* lastVisitedAt
|
||||
*/
|
Reference in New Issue
Block a user