api UPDATE

This commit is contained in:
2023-02-11 00:01:39 -05:00
parent fe9cf70282
commit 3eb200b256
6 changed files with 53 additions and 8 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App\Models;
use CodeIgniter\Model;
class myfitUserProfile extends Model
{
protected $db;
public $con_name = 'mermsemr';
public function __construct()
{
parent::__construct();
$this->db = \Config\Database::connect($this->con_name);
}
public function accountResetPassword($in)
{
return ['msg' => 'Profile Information'];
}
public function getProfileInfo($in)
{
return ['msg' => 'Profile Information'];
}
}