MiniDigger/Hangar

View on GitHub
models/src/main/scala/ore/data/project/ProjectNamespace.scala

Summary

Maintainability
A
0 mins
Test Coverage
package ore.data.project

case class ProjectNamespace(ownerName: String, slug: String) {

  def namespace: String = ownerName + "/" + slug

  override def toString: String = namespace
}