You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
569 B
16 lines
569 B
7 years ago
|
package controllers.common
|
||
|
|
||
|
import javax.inject.Inject
|
||
|
|
||
|
import com.alexitc.playsonify.{JsonControllerComponents, PublicErrorRenderer}
|
||
|
import play.api.mvc.MessagesControllerComponents
|
||
|
|
||
|
import scala.concurrent.ExecutionContext
|
||
|
|
||
|
class MyJsonControllerComponents @Inject() (
|
||
|
override val messagesControllerComponents: MessagesControllerComponents,
|
||
|
override val executionContext: ExecutionContext,
|
||
|
override val publicErrorRenderer: PublicErrorRenderer,
|
||
|
override val authenticatorService: MyAuthenticatorService)
|
||
|
extends JsonControllerComponents[Nothing]
|