Last active
April 10, 2018 19:16
-
-
Save BriceShatzer/f5ad9f992d5b9d130f9e8995d5ea0899 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//... | |
import com.kinja.mantle.model.BlogSalesMetadata | |
//... | |
@template("tiger.section.head.standard") | |
final case class Standard( | |
//... | |
blogSalesObj: Option[BlogSalesMetadata])(implicit request: RequestPlus[_]): Standard = { | |
object Standard { | |
//... | |
def apply( | |
//... | |
blogSalesObj: Option[BlogSalesMetadata])(implicit request: RequestPlus[_]): Standard = { | |
//... | |
new Standard( | |
//... | |
blogSalesObj = BlogSalesMetadata) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment