(&self)
| 119 | } |
| 120 | |
| 121 | pub fn is_wiki(&self) -> bool { |
| 122 | lazy_static! { |
| 123 | static ref WIKI: Uuid = WIKI_REPOSITORY_ID.try_into().unwrap(); |
| 124 | } |
| 125 | self.0 == *WIKI |
| 126 | } |
| 127 | |
| 128 | pub fn relative_path(&self) -> String { |
| 129 | format!("{}/", self.0) |
no outgoing calls
no test coverage detected