mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 01:02:42 +01:00
These conduit methods SHOULD allow unguarded writes.
This commit is contained in:
parent
39b4d20ce5
commit
0964a9123f
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ class ConduitAPI_daemon_launched_Method extends ConduitAPIMethod {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function shouldAllowUnguardedWrites() {
|
public function shouldAllowUnguardedWrites() {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getMethodDescription() {
|
public function getMethodDescription() {
|
||||||
|
|
|
@ -27,7 +27,7 @@ class ConduitAPI_daemon_log_Method extends ConduitAPIMethod {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function shouldAllowUnguardedWrites() {
|
public function shouldAllowUnguardedWrites() {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getMethodDescription() {
|
public function getMethodDescription() {
|
||||||
|
|
Loading…
Reference in a new issue