我想弄清楚如何在我的Rails 4應用程序中使用Pundit。 我有一個項目的模型,以項目控制器中有新動作: def new
# a bunch of stuff in the new action that I don't think is very relevant here
end
然後我在我的政策文件夾中的項目的政策有: def new?
false
#
我有一個問題,我不能在laravel 5.2中使用策略。 我有2個表格,學生和任務。 我嘗試應用策略來防止通過更改url來編輯任務,但我總是收到消息雖然任務是正確的用戶,但此操作未經授權。 政策代碼: <?php
namespace App\Policies;
use App\Models\Student;
use App\Models\Task;
c