Skip to content

Commit

Permalink
new safe values for ids
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jun 8, 2016
1 parent c224a6f commit a952ad8
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/appier_extras/parts/admin/models/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,23 +104,28 @@ class Account(base.Base):
)

facebook_id = appier.field(
index = True
index = True,
safe = True
)

twitter_username = appier.field(
index = True
index = True,
safe = True
)

google_id = appier.field(
index = True
index = True,
safe = True
)

live_id = appier.field(
index = True
index = True,
safe = True
)

github_login = appier.field(
index = True
index = True,
safe = True
)

facebook_token = appier.field(
Expand Down

0 comments on commit a952ad8

Please sign in to comment.