Skip to content

Commit

Permalink
Add isBusiness field to UserInfoData
Browse files Browse the repository at this point in the history
- Update scala request json library
  • Loading branch information
yukihirai0505 committed Oct 5, 2017
1 parent 335c767 commit 00ce330
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sonatypeSettings

name := "sInstagram"

version := "0.2.3"
version := "0.2.4"

scalaVersion := "2.11.8"

Expand All @@ -13,7 +13,7 @@ scalacOptions += "-feature"
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

libraryDependencies ++= Seq(
"com.yukihirai0505" % "scala-request-json_2.11" % "2.0",
"com.yukihirai0505" % "scala-request-json_2.11" % "2.1",
"org.scalatest" % "scalatest_2.11" % "3.0.0"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ case class UserInfoData(
profilePicture: String,
username: String,
fullName: String,
website: String
website: String,
isBusiness: Boolean
)

object UserInfoData {
Expand Down

0 comments on commit 00ce330

Please sign in to comment.