Skip to content

Commit

Permalink
make new topic always default to 'ooc'
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMaster99 committed Jan 15, 2015
1 parent 6cd05d9 commit b8af068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/index.js
Expand Up @@ -1078,7 +1078,7 @@ app.post('/forums/:forumId/topics', function*() {
this.assert(forum, 404);
this.assertAuthorized(this.currUser, 'CREATE_TOPIC', forum);

var postType = forum.is_roleplay ? 'ic' : 'ooc';
var postType = 'ooc';
var topic = yield db.createTopic({
userId: this.currUser.id,
forumId: forumId,
Expand Down

0 comments on commit b8af068

Please sign in to comment.