MiniDigger/Hangar

View on GitHub
ore/app/form/project/VersionDeployForm.scala

Summary

Maintainability
A
35 mins
Test Coverage
package form.project

import ore.models.project.Channel
import ore.db.Model

import cats.data.OptionT
import cats.effect.IO

case class VersionDeployForm(
    apiKey: String,
    channel: OptionT[IO, Model[Channel]],
    recommended: Boolean,
    createForumPost: Boolean,
    changelog: Option[String]
)