feat(cmd/pass): adding the start of pass command
This commit is contained in:
parent
3d71d977d2
commit
8565a948ce
9 changed files with 42 additions and 16 deletions
|
|
@ -6,7 +6,7 @@
|
|||
/* By: omoudni <omoudni@student.42paris.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/05/13 11:11:07 by rparodi #+# #+# */
|
||||
/* Updated: 2025/05/26 22:30:07 by rparodi ### ########.fr */
|
||||
/* Updated: 2025/05/29 12:17:15 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/******************************************************************************/
|
||||
|
||||
|
|
@ -148,6 +148,13 @@ void Server::printUsers() const
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief The getter for the password
|
||||
*
|
||||
* @return the password of the server
|
||||
*/
|
||||
std::string Server::getPassword() const { return this->_password; }
|
||||
|
||||
std::list<User *> Server::getUsersList() const {
|
||||
// to_delete when done
|
||||
WARNING_MSG("TO DO FILL")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue