(&self)
| 118 | } |
| 119 | |
| 120 | pub fn is_internal_admin(&self) -> bool { |
| 121 | self.internal_metadata |
| 122 | .as_ref() |
| 123 | .map(|metadata| metadata.superuser) |
| 124 | .clone() |
| 125 | .unwrap_or(false) |
| 126 | } |
| 127 | |
| 128 | /// Returns whether this user is a superuser. |
| 129 | pub fn is_superuser(&self) -> bool { |