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.
15 lines
569 B
15 lines
569 B
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]
|
|
|