有没有办法从命名空间中的所有资源中排除一个操作?
例如,如果我有
namespace :api
resources posts, :except: [:new]
resources comments, :except: [:new]
resources tags, :except: [:new]
我宁愿只定义一次这种行为。
有没有办法从命名空间中的所有资源中排除一个操作?
例如,如果我有
namespace :api
resources posts, :except: [:new]
resources comments, :except: [:new]
resources tags, :except: [:new]
我宁愿只定义一次这种行为。