fix: change value cast to encrypted for shared environment variables
This commit is contained in:
parent
82b19e5921
commit
e3df380a04
3 changed files with 7 additions and 7 deletions
|
|
@ -10,7 +10,7 @@ class SharedEnvironmentVariable extends Model
|
||||||
|
|
||||||
protected $casts = [
|
protected $casts = [
|
||||||
'key' => 'string',
|
'key' => 'string',
|
||||||
'value' => 'string',
|
'value' => 'encrypted',
|
||||||
];
|
];
|
||||||
|
|
||||||
public function team()
|
public function team()
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue