Skip to content

Commit

Permalink
Feature/totp for os user
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammad Ateeb committed Sep 22, 2023
1 parent 8cfa1f9 commit e9d3194
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
CHANGELOG
=========
6.48.1
---
* Totp identification status key added for the user.

6.48.0
---
* Totp Enabled/Disabled Funcctionality added.

6.47.1
---
* Alterered Operating System resource to also show the basename
Expand Down
12 changes: 12 additions & 0 deletions src/Entity/OpenStackUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ class OpenStackUser extends AbstractEntity
*/
protected $email;

/**
* Totp Enabled
*
* @var bool
*/
protected $totpEnabled;

public function getId(): string
{
return $this->id;
Expand Down Expand Up @@ -63,4 +70,9 @@ public function setEmail(string $email): void
{
$this->email = $email;
}

public function getTotpEnabled(): bool
{
return $this->totpEnabled;
}
}
2 changes: 1 addition & 1 deletion src/TransipAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
class TransipAPI
{
public const TRANSIP_API_ENDPOINT = "https://api.transip.nl/v6";
public const TRANSIP_API_LIBRARY_VERSION = "6.48.0";
public const TRANSIP_API_LIBRARY_VERSION = "6.48.1";
public const TRANSIP_API_DEMO_TOKEN = "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImN3MiFSbDU2eDNoUnkjelM4YmdOIn0.eyJpc3MiOiJhcGkudHJhbnNpcC5ubCIsImF1ZCI6ImFwaS50cmFuc2lwLm5sIiwianRpIjoiY3cyIVJsNTZ4M2hSeSN6UzhiZ04iLCJpYXQiOjE1ODIyMDE1NTAsIm5iZiI6MTU4MjIwMTU1MCwiZXhwIjoyMTE4NzQ1NTUwLCJjaWQiOiI2MDQ0OSIsInJvIjpmYWxzZSwiZ2siOmZhbHNlLCJrdiI6dHJ1ZX0.fYBWV4O5WPXxGuWG-vcrFWqmRHBm9yp0PHiYh_oAWxWxCaZX2Rf6WJfc13AxEeZ67-lY0TA2kSaOCp0PggBb_MGj73t4cH8gdwDJzANVxkiPL1Saqiw2NgZ3IHASJnisUWNnZp8HnrhLLe5ficvb1D9WOUOItmFC2ZgfGObNhlL2y-AMNLT4X7oNgrNTGm-mespo0jD_qH9dK5_evSzS3K8o03gu6p19jxfsnIh8TIVRvNdluYC2wo4qDl5EW5BEZ8OSuJ121ncOT1oRpzXB0cVZ9e5_UVAEr9X3f26_Eomg52-PjrgcRJ_jPIUYbrlo06KjjX2h0fzMr21ZE023Gw";

/**
Expand Down

0 comments on commit e9d3194

Please sign in to comment.