moved attributes under docs

This commit is contained in:
Svyatoslav Nikolsky 2017-08-16 09:40:00 +03:00
parent cc95edf4dc
commit a02db13278
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ struct CachedContract {
contract: Option<SecretStoreAclStorage>,
}
#[derive(Default, Debug)]
/// Dummy ACL storage implementation (check always passed).
#[derive(Default, Debug)]
pub struct DummyAclStorage {
prohibited: RwLock<HashMap<Public, HashSet<ServerKeyId>>>,
}
@ -121,8 +121,8 @@ impl CachedContract {
}
impl DummyAclStorage {
/// Prohibit given requestor access to given documents
#[cfg(test)]
/// Prohibit given requestor access to given document
pub fn prohibit(&self, public: Public, document: ServerKeyId) {
self.prohibited.write()
.entry(public)