github
0 of 18 new or added lines in 4 files covered. (0.0%)
3922 existing lines in 105 files now uncovered.0 of 4086 relevant lines covered (0.0%)
0.0 hits per line
1 |
# frozen_string_literal: true
|
|
2 |
|
|
UNCOV
3
|
module Admin |
× |
UNCOV
4
|
class UsersController < CrudController |
× |
5 |
|
|
UNCOV
6
|
include Admin::Authenticatable |
× |
UNCOV
7
|
include Admin::CrudSwag |
× |
8 |
|
|
UNCOV
9
|
self.permitted_attrs = [:username, :first_name, :last_name, groups: []] |
× |
10 |
|
|
UNCOV
11
|
self.search_columns = %w[username first_name last_name] |
× |
12 |
|
|
UNCOV
13
|
crud_swagger_paths(route_prefix: '/admin', |
× |
UNCOV
14
|
data_class: 'Admin::User', |
× |
UNCOV
15
|
tags: [:admin], |
× |
UNCOV
16
|
query_params: [:q]) |
× |
17 |
|
|
UNCOV
18
|
end
|
× |
UNCOV
19
|
end
|
× |