All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gitbucket.core.model.DeployKey.scala Maven / Gradle / Ivy

The newest version!
package gitbucket.core.model

trait DeployKeyComponent extends TemplateComponent { self: Profile =>
  import profile.api._

  lazy val DeployKeys = TableQuery[DeployKeys]

  class DeployKeys(tag: Tag) extends Table[DeployKey](tag, "DEPLOY_KEY") with BasicTemplate {
    val deployKeyId = column[Int]("DEPLOY_KEY_ID", O AutoInc)
    val title = column[String]("TITLE")
    val publicKey = column[String]("PUBLIC_KEY")
    val allowWrite = column[Boolean]("ALLOW_WRITE")
    def * =
      (userName, repositoryName, deployKeyId, title, publicKey, allowWrite).mapTo[DeployKey]

    def byPrimaryKey(userName: String, repositoryName: String, deployKeyId: Int) =
      (this.userName === userName.bind) && (this.repositoryName === repositoryName.bind) && (this.deployKeyId === deployKeyId.bind)
  }
}

case class DeployKey(
  userName: String,
  repositoryName: String,
  deployKeyId: Int = 0,
  title: String,
  publicKey: String,
  allowWrite: Boolean
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy