The user is now prevented from proceeding forward if their credentials are incorrect

This commit is contained in:
kdeng00
2020-01-14 20:35:21 -05:00
parent 49c25e54a1
commit 2742f827aa
7 changed files with 145 additions and 117 deletions
+2
View File
@@ -13,6 +13,8 @@ namespace model {
CoverArt() = default;
CoverArt(const int id, const std::string& title) :
id(id), title(title) { }
CoverArt(const int id, const std::string&& title) :
id(id), title(title) { }
int id;
std::string title;