Fix lint issues in web_server_base (#2409)

This commit is contained in:
Jesse Hills 2021-09-28 15:33:30 +13:00
parent 4579f78bf9
commit 8ef2ad17b5
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

@ -1,5 +1,7 @@
#pragma once #pragma once
#include <memory>
#include <utility>
#include "esphome/core/component.h" #include "esphome/core/component.h"
#include <ESPAsyncWebServer.h> #include <ESPAsyncWebServer.h>
@ -94,8 +96,8 @@ class WebServerBase : public Component {
AsyncWebServer *get_server() const { return server_; } AsyncWebServer *get_server() const { return server_; }
float get_setup_priority() const override; float get_setup_priority() const override;
void set_auth_username(std::string auth_username) { credentials_.username = auth_username; } void set_auth_username(std::string auth_username) { credentials_.username = std::move(auth_username); }
void set_auth_password(std::string auth_password) { credentials_.password = auth_password; } void set_auth_password(std::string auth_password) { credentials_.password = std::move(auth_password); }
void add_handler(AsyncWebHandler *handler); void add_handler(AsyncWebHandler *handler);