def generateShortUrlPath()

in path-manager/app/services/ShortUrlEncoder.scala [10:14]


  def generateShortUrlPath(pageId: Long) = "p/" + encodePageIdToPathCode(pageId)

  def encodePageIdToPathCode(pageId: Long) = {
    typographicallyEncode(base27encode(pageId))
  }