2018-03-08 12:38:02 -08:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
|
2019-08-01 18:59:16 -07:00
|
|
|
namespace ircd::m::media::thumbnail
|
|
|
|
{
|
|
|
|
extern conf::item<bool> enable;
|
|
|
|
extern conf::item<bool> enable_remote;
|
2021-01-21 21:51:28 -08:00
|
|
|
extern conf::item<bool> animation_enable;
|
2019-08-01 18:59:16 -07:00
|
|
|
extern conf::item<size_t> width_min;
|
|
|
|
extern conf::item<size_t> width_max;
|
|
|
|
extern conf::item<size_t> height_min;
|
|
|
|
extern conf::item<size_t> height_max;
|
|
|
|
extern conf::item<std::string> mime_whitelist;
|
|
|
|
extern conf::item<std::string> mime_blacklist;
|
|
|
|
}
|