1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 08:22:59 +01:00

Merge pull request #194 from actix/brandur-allowed-origin-into

Let CSRF's `allowed_origin()` be specified as a type supporting `Into<String>`
This commit is contained in:
Brandur 2018-04-21 10:37:18 -07:00 committed by GitHub
commit f89b7a9bb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,8 +150,8 @@ impl CsrfFilter {
/// Add an origin that is allowed to make requests. Will be verified /// Add an origin that is allowed to make requests. Will be verified
/// against the `Origin` request header. /// against the `Origin` request header.
pub fn allowed_origin(mut self, origin: &str) -> CsrfFilter { pub fn allowed_origin<T: Into<String>>(mut self, origin: T) -> CsrfFilter {
self.origins.insert(origin.to_owned()); self.origins.insert(origin.into());
self self
} }