Skip to content

Commit 6691936

Browse files
authored
Merge pull request #102 from cipherstash/eql-docs-feedback
Docs: Enable docs feedback for EQL repo
2 parents d1511f5 + 09745f1 commit 6691936

File tree

9 files changed

+87
-0
lines changed

9 files changed

+87
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Docs feedback
2+
description: Feedback to help make our docs more effective.
3+
title: "[Docs]: "
4+
labels: ["docs", "triage"]
5+
assignees:
6+
- kateandrews
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to give us feedback!
12+
- type: input
13+
id: contact
14+
attributes:
15+
label: Contact details
16+
description: How can we get in touch with you if we need more info?
17+
placeholder: you@example.com
18+
validations:
19+
required: false
20+
- type: textarea
21+
id: what-problem
22+
attributes:
23+
label: What problem were you trying to solve?
24+
placeholder: Tell us what you were looking for in our docs.
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: additional-info
29+
attributes:
30+
label: Anything else you'd like us to know?
31+
placeholder: Let us know if you've got any additional feedback.
32+
validations:
33+
required: false
34+
- type: checkboxes
35+
id: terms
36+
attributes:
37+
label: Code of conduct
38+
description: By submitting this issue, you agree to follow our [Code of conduct](https://github.com/cipherstash/proxy/blob/main/CODE_OF_CONDUCT.md).
39+
options:
40+
- label: I agree to follow this project's Code of conduct
41+
required: true

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,3 +608,9 @@ Limitations:
608608
All the containers bind to the same port (`7543`). If you want to run
609609
multiple containers at the same time, you have to change the ports by
610610
editing `tests/docker-compose.yml`
611+
612+
---
613+
614+
### Didn't find what you wanted?
615+
616+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20README.md)

docs/concepts/WHY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,9 @@ For advanced users who prefer to handle encryption within their application:
8989
To get started using CipherStash's encryption is use solution, see the [Getting Started](https://github.com/cipherstash/encrypt-query-language/blob/main/GETTINGSTARTED.md) guide.
9090

9191
For further help, raise an issue [here](https://github.com/cipherstash/encrypt-query-language/issues).
92+
93+
---
94+
95+
### Didn't find what you wanted?
96+
97+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20WHY.md)

docs/reference/INDEX.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,3 +239,8 @@ SELECT cs_remove_index_v1(
239239
index_name text
240240
);
241241
```
242+
---
243+
244+
### Didn't find what you wanted?
245+
246+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20INDEX.md)

docs/reference/JSON.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -880,3 +880,8 @@ Example data and params:
880880
"q": "ejson_path"
881881
}
882882
```
883+
---
884+
885+
### Didn't find what you wanted?
886+
887+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20JSON.md)

docs/reference/MIGRATOR.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,9 @@ cipherstash-migrator --columns test_text=encrypted_text test_jsonb=encrypted_jso
7070

7171
- Ensure that the corresponding encrypted columns already exist in the table before running the migration.
7272
- Data migration operations should be tested in a development environment before being executed in production.
73+
74+
---
75+
76+
### Didn't find what you wanted?
77+
78+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20MIGRATOR.md)

docs/reference/PAYLOAD.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,9 @@ CipherStash Proxy handles the encoding, and EQL provides the functions.
5656
| o | ORE index | Ciphertext index value. Encrypted by Proxy. |
5757
| u | Unique index | Ciphertext index value. Encrypted by Proxy. |
5858
| sv | STE vector index | Ciphertext index value. Encrypted by Proxy. |
59+
60+
---
61+
62+
### Didn't find what you wanted?
63+
64+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20PAYLOAD.md)

docs/tutorials/GETTINGSTARTED.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,3 +580,9 @@ This query returns:
580580
This tutorial showed how we can go from a plaintext text field to an encrypted field and how to query the encrypted fields.
581581

582582
We have some [examples here](../../README.md#helper-packages) of what this would look like if you are using an ORM.
583+
584+
---
585+
586+
### Didn't find what you wanted?
587+
588+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20GETTINGSTARTED.md)

docs/tutorials/PROXY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,9 @@ At a high level:
8383
1. CipherStash Proxy decrypts any returned `ciphertext` data and returns to client
8484

8585
![Select](/diagrams/overview-select.drawio.svg)
86+
87+
---
88+
89+
### Didn't find what you wanted?
90+
91+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20PROXY.md)

0 commit comments

Comments
 (0)