Test Failed
Pull Request — master (#2)
by Luís
03:32 queued 01:49
created

src/js/services/User.js   A

Size

Lines of Code 10

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 2
Metric Value
nc 1
dl 0
loc 10
rs 10
c 2
b 0
f 2
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A User.js ➔ ??? 0 3 1
1
import App from "app";
2
import RestInterface from "./RestInterface";
3
4
class User extends RestInterface {
5
    constructor() {
6
        super("User", App.Config.get("basepath") + "apiusers")
7
    }
8
}
9
10
export default User;
11