feat(Nextcloud sync & optimize)
All checks were successful
Deploy Roxane to Preprod / deploy (push) Successful in 1m18s

This commit is contained in:
2026-01-30 15:27:23 +01:00
parent b8de637b23
commit 9649d99e15
11 changed files with 307 additions and 245 deletions

View File

@@ -6,6 +6,31 @@ use App\Enums\IspconfigType;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* @property int $id
* @property int $member_id
* @property string|null $ispconfig_client_id
* @property string|null $ispconfig_service_user_id
* @property string|null $email
* @property IspconfigType $type
* @property array<array-key, mixed>|null $data
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\Member $member
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember query()
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereData($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereIspconfigClientId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereIspconfigServiceUserId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereMemberId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereType($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|IspconfigMember whereUpdatedAt($value)
* @mixin \Eloquent
*/
class IspconfigMember extends Model
{
protected $table = 'ispconfigs_members';