ro
8c375e6ba1
setting sync is working but member data was not being updated in the folks file or in the current active session, so that's been addressed still need to turn on avatar updating as well, but that is tied to updating the settings page, so that will be handled when image uploads for that area are reactivated
23 lines
367 B
PHP
23 lines
367 B
PHP
<?php
|
|
|
|
namespace App\Interfaces;
|
|
|
|
interface MemberRepositoryInterface
|
|
{
|
|
public function getAll();
|
|
|
|
public function getByID($id);
|
|
|
|
public function getByHandle($handle);
|
|
|
|
public function delete($id);
|
|
|
|
public function create($member);
|
|
|
|
public function update($member);
|
|
|
|
public function auth($request);
|
|
|
|
public static function status();
|
|
}
|