actions: Removes Rule parameter from runtime execute

This commit is contained in:
Felipe Zimmerle
2020-05-18 21:33:03 -03:00
parent 9b54b8e8ae
commit 1002058705
91 changed files with 172 additions and 192 deletions

View File

@@ -33,7 +33,7 @@ class Deny : public Action {
public:
explicit Deny(const std::string &action) : Action(action) { }
bool execute(RuleWithActions *rule, Transaction *transaction) override;
bool execute(Transaction *transaction) override;
bool isDisruptive() override { return true; }
};