Alexis Hernandez
6 years ago
2 changed files with 18 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||
package controllers |
|||
|
|||
import controllers.common.{MyJsonController, MyJsonControllerComponents} |
|||
import javax.inject.Inject |
|||
import org.scalactic.Good |
|||
import play.api.libs.json.JsObject |
|||
|
|||
import scala.concurrent.Future |
|||
|
|||
class MaintenanceController @Inject() ( |
|||
components: MyJsonControllerComponents) |
|||
extends MyJsonController(components) { |
|||
|
|||
def run() = public { _ => |
|||
Future.successful(Good(JsObject.empty)) |
|||
} |
|||
} |
Loading…
Reference in new issue