Skip to content

Commit

Permalink
chore: fix import orders (#727)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmahidalgo authored Dec 20, 2023
1 parent cbd38d9 commit a3cd835
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Forum/Forum.router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ import { HTTPError, STATUS_CODES } from '../common/HTTPError'
import { getValidator } from '../utils/validator'
import { withModelExists, withModelAuthorization } from '../middleware'
import { withAuthentication, AuthRequest } from '../middleware/authentication'
import { isErrorWithMessage } from '../utils/errors'
import {
Collection,
CollectionAttributes,
CollectionService,
} from '../Collection'
import { isErrorWithMessage } from '../utils/errors'
import { createPost } from './client'
import { ForumPost, forumPostSchema } from './Forum.types'
import { isTPCollection } from '../utils/urn'
import { MAX_FORUM_ITEMS } from '../Item/utils'
import { Item } from '../Item'
import { Bridge } from '../ethereum/api/Bridge'
import { OwnableModel } from '../Ownable'
import { createPost } from './client'
import { ForumService } from './Forum.service'
import { ForumPost, forumPostSchema } from './Forum.types'

const validator = getValidator()

Expand Down

0 comments on commit a3cd835

Please sign in to comment.