Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add links and removed OpenFGA RC mentions #19

Merged
merged 2 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This repo contains some OpenFGA [sample stores](#sample-stores).
- [Resources](#resources)

## About OpenFGA
[OpenFGA](https://openfga.dev) is an open source Fine-Grained Authorization solution inspired by [Google's Zanzibar paper](https://research.google/pubs/pub48190/). It was created by the FGA team at [Auth0](https://auth0.com) based on [Auth0 Fine-Grained Authorization (FGA)](https://fga.dev), available under [a permissive license (Apache-2)](https://github.com/openfga/rfcs/blob/main/LICENSE) and welcomes community contributions.
[OpenFGA](https://openfga.dev) is an open source Fine-Grained Authorization solution inspired by [Google's Zanzibar paper](https://research.google/pubs/pub48190/). It was created by the FGA team at [Auth0/Okta](https://auth0.com) based on [Okta Fine-Grained Authorization (FGA)](https://fga.dev), available under [a permissive license (Apache-2)](https://github.com/openfga/rfcs/blob/main/LICENSE) and welcomes community contributions.

OpenFGA is designed to make it easy for application builders to model their permission layer, and to add and integrate fine-grained authorization into their applications. OpenFGA’s design is optimized for reliability and low latency at a high scale.

Expand All @@ -26,6 +26,14 @@ Some sample stores are:
- [IoT](./stores/iot)
- [Slack](./stores/slack)
- [Custom Roles](./stores/custom-roles)
- [Entitlements](./stores/entitlements)
- [Advanced Entitlements](./stores/advanced-entitlements)
- [Banking](./stores/banking)
- [IP Based Access](./stores/ip-based-access)
- [Super-Admin](./stores/superadmin)
- [Temporal Access](./stores/temporal-access)
- [Group Resource Attributes](./stores/groups-resource-attributes)
- [Conditions Data Types](./stores/condition-data-types)

## Creating your store and loading sample data

Expand Down
2 changes: 0 additions & 2 deletions stores/advanced-entitlements/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

This entitlements model is inspired on [Notion's subscription plans](https://www.notion.so/pricing).

It takes advantage of Conditional Relationship Tuples, which are available in OpenFGA v1.4.0-rc1 and above.

## Try It Out

1. Make sure you have the [FGA CLI](https://github.com/openfga/cli/?tab=readme-ov-file#installation)
Expand Down
2 changes: 0 additions & 2 deletions stores/banking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

It models a banking system, with account managers and account owners, where they have different limits for doing bank transactions. The limit can be overruled for a specific transaction.

It takes advantage of Conditional Relationship Tuples, which are available in OpenFGA v1.4.0-rc1 and above.

## Try It Out

1. Make sure you have the [FGA CLI](https://github.com/openfga/cli/?tab=readme-ov-file#installation)
Expand Down
2 changes: 0 additions & 2 deletions stores/condition-data-types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ OpenFGA's Conditional Relationship Tuples are defined using [Google's CEL expres

This example showcases the different data types and expressions that are supported in OpenFGA conditions and how to use them.

It takes advantage of Conditional Relationship Tuples, which are available in OpenFGA v1.4.0-rc1 and above.

## Try It Out

1. Make sure you have the [FGA CLI](https://github.com/openfga/cli/?tab=readme-ov-file#installation)
Expand Down
2 changes: 0 additions & 2 deletions stores/groups-resource-attributes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

It enables members of specific groups to access content depending on resource attributes. For example, you can specify that members of the 'marketing' team can only view documents that are 'published' but members of the 'content' team can also view 'draft' documents.

It takes advantage of Conditional Relationship Tuples, which are available in OpenFGA v1.4.0-rc1 and above.

## Try It Out

1. Make sure you have the [FGA CLI](https://github.com/openfga/cli/?tab=readme-ov-file#installation)
Expand Down
2 changes: 0 additions & 2 deletions stores/ip-based-access/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

It enables granting access for users in a specific IP range..

It takes advantage of Conditional Relationship Tuples, which are available in OpenFGA v1.4.0-rc1 and above.

## Try It Out

1. Make sure you have the [FGA CLI](https://github.com/openfga/cli/?tab=readme-ov-file#installation)
Expand Down
2 changes: 0 additions & 2 deletions stores/temporal-access/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

It enables granting access for a limited time.

It takes advantage of Conditional Relationship Tuples, which are available in OpenFGA v1.4.0-rc1 and above.

## Try It Out

1. Make sure you have the [FGA CLI](https://github.com/openfga/cli/?tab=readme-ov-file#installation)
Expand Down