]> git.stg.codes - stg.git/commitdiff
Ticket 37. The if-else construction and conf.ReadString() function call added for
authorElena Mamontova <helenh463@gmail.com>
Wed, 25 May 2016 08:44:40 +0000 (11:44 +0300)
committerElena Mamontova <helenh463@gmail.com>
Wed, 25 May 2016 08:44:40 +0000 (11:44 +0300)
the 'ChangePolicy' parameter.

projects/stargazer/plugins/store/files/file_store.cpp

index 2a7eb6c131719cea07ff1b1a477026b979b15e7b..03a672aa31c62938f05bd660af7de369c3abb5f5 100644 (file)
@@ -1465,6 +1465,11 @@ if (conf.ReadString("Period", &str, "month") < 0)
     td->tariffConf.period = TARIFF::MONTH;
 else
     td->tariffConf.period = TARIFF::StringToPeriod(str);
+
+if (conf.ReadString("ChangePolicy", &str, "allow") < 0)
+    td->tariffConf.changePolicy = TARIFF::ALLOW;
+else
+    td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(str);
 return 0;
 }
 //-----------------------------------------------------------------------------