ApiToken: rename what to scope
This commit is contained in:
parent
28fbf35779
commit
c341179150
@ -54,12 +54,12 @@ impl ApiToken {
|
|||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn can_read(&self, what: &'static str) -> bool {
|
pub fn can_read(&self, scope: &'static str) -> bool {
|
||||||
self.can("read", what)
|
self.can("read", scope)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn can_write(&self, what: &'static str) -> bool {
|
pub fn can_write(&self, scope: &'static str) -> bool {
|
||||||
self.can("write", what)
|
self.can("write", scope)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user