Commit f898a47e authored by Timothy Andrew's avatar Timothy Andrew

Fix a missed `before_action` for `AutocompleteController`.

- `#find_users` depends on a project being loaded.

- Missed adding this in 2193ae22
parent 2193ae22
class AutocompleteController < ApplicationController
skip_before_action :authenticate_user!, only: [:users]
before_action :load_project, only: [:users]
before_action :find_users, only: [:users]
def users
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment