Hi!
Just wondering if there is any way to set up collection encryption in the appwrite console? I've seen mentions of it in API references and some doc's on the site, but can't find where to do it within the console.
Thanks!
Hi @Orion read here: https://appwrite.io/docs/advanced/security/encryption
Thanks @kamal.panara . That's the page I found, however I then found a GitHub issue (#6293) where someone is using the SDK to create a database attribute that is encrypted.
I don't think you can create attributes with client sdk. you will need to use Server SDK for that, read here: https://appwrite.io/docs/references/cloud/server-dart/databases#createStringAttribute
@Orion this is what you are looking for!
@kamal.panara Ahhh! I see. Great, thank you. Hopefully will be in the web console soon!!
Database Attribute Encryption? solved
[SOLVED] Database Attribute Encryption?
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...