Skip to content

Commit

Permalink
updated FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
mkotsollaris committed Jan 18, 2021
1 parent 9cf3a06 commit 8f37aee
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: 0.3.1
release_name: 0.3.1
tag_name: 0.3.2
release_name: 0.3.2
body: |
Addressed P0 issues for MVP release
Added ability for global-facet declaration.
draft: false
prerelease: false
3 changes: 2 additions & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Facet",
"version": "0.3.1",
"version": "0.3.2",
"description": "Facet.ninja | Deploy - Learn - Adapt",
"icons": {
"512": "facet_logo_512x512.png"
Expand All @@ -26,6 +26,7 @@
"bundle.js"
]
}

],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxfhoAGlzfRw1Tdn5cbu9XozL65aZM+lNzvQIDCJBbXVV7sdireo6C9e0p4MmUl/VlJGeBRSQFVeh5cNIcYb0/zdoAmOlXI6vr1vaMZFWgA9dpmTUEiz2jqUV2jsTvhLUjNH8Xr0y0xs66Av2tP2Fj3+0dcSMF7op8MSyTOIimZipW5ct8ORwgXDvqhL5SaBm49rRDlwHmlmdLbdpQFbMFE5ZlM1ah9W/fHErATHsffZfXWQyVBZCOCKCYkPOHZj3wViIJbSaeVZv+XVUZl/uhPkL5Txzkb4qXricAzyyvmA3O/8XijiHjw+VpxzBIpAj7P4Bbgsal2r3VJeOC67OYwIDAQAB",
"permissions": [
Expand Down
13 changes: 10 additions & 3 deletions readme_assets/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ Facet abstracts the rollout process that is commonly achieved by using feature f

### 2. What is a facet? <br/>

A facet is a set elements that construe a feature. For instance, a login form could be considered a facet, with the elements being `username` and `password`.
(//todo add image)
A facet is a set elements that construe a feature. For instance, a login form could be considered a facet, with the elements being `email`, `password` and the login button.

<a>
<img width="60%" src="./authentication.png">
</a>

### 3. Is facet secure? <br/>

Expand All @@ -19,7 +22,11 @@ JS code is delivered at all times to the end user. The facet CDN script observes

### 5. My facet is declared in multiple pages (ie: menu). Can I declare a global facets?<br/>

Not yet. WIP!
~~Not yet. WIP!~~ Yes. By default, facets are declared global. You can change their visibility to non-global, which mean that their rules will be applied to the current domain (`pathname`). Click on the desired facet -> select the "more options button", and click on the "global" checkbox.

<a>
<img src="./global_facet_declaration.png">
</a>

### 6. How to hide a facet before rolling out to production?<br/>

Expand Down
Binary file added readme_assets/authentication.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme_assets/global_facet_declaration.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8f37aee

Please sign in to comment.