Using native FUEL cms auth & user system in own site
Hi! I was thinking about implementing auth system in my site using native FUEL CMS libraries. Is a good idea? I see there's no "user creating" function in both libraries, so I'll have to make my own. My first trials were to load users' model manually and launch form_fields function in custom controller, but I couldn't manage to get it's hooks working (they weren't called). So now I'm thinking about writing my own saving function. Maybe there's a better way?
Comments
For user validation there is a Fuel_auth class. This can be accessed in 1.0 beta as $this->fuel->auth->....(method). In .93 it's accessed as just $this->fuel_auth->...
However, these users are strictly meant for access to FUEL CMS and not necessarily for other parts of your site. Does that make sense?