giagara
giagara
@stancl in my opinion exposing sensitive data like that is a lack of security. I need to separate the tenant's database due a segregation of duty policy I MUST adopt....
>Where will you store the encryption key that will encrypt the password in the data column? Of course in my .env file, that's why I specified **Database level** as data...
not complainig, just I'd like to use it because can save me a lot of work. I hope to see it in V4! Thanks!
not complainig, just I'd like to use it because can save me a lot of work. I hope to see it in V4! Thanks!
Hey @rickyjohnston thanks a lot. I managed this by overriding `public function getAttribute($key)` and `public function setAttribute($key, $value)` in `App\Models\Tenant` by adding an if statement and then encrypt/decrypt. I like...
@stancl @rickyjohnston 255 characters (default for string method in migrations) is not enough to store the crypted random data generated. Should be increased like: ``` $table->string('tenancy_db_username', 500); $table->string('tenancy_db_password', 500); ```...
I have worked around by overriding the class: ```php
Can this merge be done, I also have issues with php8.1
It's better to extract to temp directory, upload to s3, and then remove temp directory.
can confirm. Also lines: https://github.com/nategood/httpful/blob/0cded3ea97ba905600de9ceb9ef13f3ab681587c/src/Httpful/Response/Headers.php#L56 https://github.com/nategood/httpful/blob/0cded3ea97ba905600de9ceb9ef13f3ab681587c/src/Httpful/Response/Headers.php#L66 and others has issues