0

I have a list of objects I call playsets. Some of these are public. How do I let anonymous users get a listing of only public objects? I thought it was ".read": "data.child('public').val() == true", but I got an access denied error.

Tim Clemans
  • 875
  • 1
  • 10
  • 18

1 Answers1

1

You'll have to create a separate list of the publicly accessible objects, since rules are not filter.

For more information see this answer.

Community
  • 1
  • 1
Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807