ApiToken: rename what to scope

This commit is contained in:
Baptiste Gelez 2018-10-29 21:21:00 +01:00
parent 28fbf35779
commit c341179150
1 changed files with 4 additions and 4 deletions

View File

@ -54,12 +54,12 @@ impl ApiToken {
false
}
pub fn can_read(&self, what: &'static str) -> bool {
self.can("read", what)
pub fn can_read(&self, scope: &'static str) -> bool {
self.can("read", scope)
}
pub fn can_write(&self, what: &'static str) -> bool {
self.can("write", what)
pub fn can_write(&self, scope: &'static str) -> bool {
self.can("write", scope)
}
}