Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ require_once 'RESTAPI/autoloader.inc';
use RESTAPI\Core\Endpoint;

/**
* Defines an Endpoint for interacting with a single OpenVPNExport Model object at
* /api/v2/vpn/openvpn/clientexport.
* Defines an Endpoint for interacting with a single FreeRADIUSUser Model object at
* /api/v2/services/freeradius/user
*/
class ServicesFreeRADIUSUserEndpoint extends Endpoint {
public function __construct() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ require_once 'RESTAPI/autoloader.inc';
use RESTAPI\Core\Endpoint;

/**
* Defines an Endpoint for interacting with a single OpenVPNExport Model object at
* /api/v2/vpn/openvpn/clientexport.
* Defines an Endpoint for interacting with a many FreeRADIUSUser Model objects at
* /api/v2/services/freeradius/users
*/
class ServicesFreeRADIUSUsersEndpoint extends Endpoint {
public function __construct() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use RESTAPI\Validators\IPAddressValidator;
use RESTAPI\Validators\RegexValidator;

/**
* Defines a Model that represents OpenVPN Client config Export.
* Defines a Model that represents FreeRADIUS Users
*/
class FreeRADIUSUser extends Model {

Expand Down