mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
backend: cleaned console.logs
This commit is contained in:
parent
c92f84c24f
commit
723ab51eef
5 changed files with 0 additions and 9 deletions
|
@ -7,8 +7,6 @@ module.exports = async (req, res) => {
|
|||
const user = await User.findOne({ _id: id, token });
|
||||
const random_url = await generateRandomUrl();
|
||||
|
||||
console.log('USER', { id, token });
|
||||
|
||||
if (user) {
|
||||
return res.send({ success: true, ...user.toObject(), id: user._id, random_url });
|
||||
}
|
||||
|
|
|
@ -65,13 +65,9 @@ module.exports = async (req, res) => {
|
|||
first_name, last_name, name, photo
|
||||
}).save();
|
||||
|
||||
console.log('AUTH', auth.toObject());
|
||||
res.render('social/success', { title: STRINGS.OAUTH.SUCCESS_TITLE, ...user, token: auth.token });
|
||||
} else {
|
||||
const created = await User.create(user, (err, result) => {
|
||||
if (err) console.log('ERRRRRR', err);
|
||||
|
||||
console.log('USER', result);
|
||||
return result.toObject();
|
||||
});
|
||||
|
||||
|
|
|
@ -58,7 +58,6 @@ export const PROVIDERS = ENABLED.reduce((obj, provider) => ({
|
|||
}), {});
|
||||
|
||||
export const replaceProviderUrl = (provider, { x, y, zoom }) => {
|
||||
console.log('got provider', provider);
|
||||
const { url, range } = (PROVIDERS[provider] || PROVIDERS[DEFAULT_PROVIDER]);
|
||||
const random = (range && range.length >= 2) ? range[Math.round((Math.random() * (range.length - 1)))] : 1;
|
||||
|
||||
|
|
|
@ -65,7 +65,6 @@ export class Router {
|
|||
};
|
||||
//
|
||||
lockPropagations = () => {
|
||||
console.log('lock');
|
||||
window.addEventListener('mouseup', this.unlockPropagations);
|
||||
this.lockMapClicks(true);
|
||||
};
|
||||
|
|
|
@ -99,7 +99,6 @@ export class Sticker {
|
|||
};
|
||||
|
||||
estimateAngle = e => {
|
||||
console.log('est');
|
||||
const { x, y } = this.element.getBoundingClientRect();
|
||||
const { pageX, pageY } = e;
|
||||
this.angle = Math.atan2((y - pageY), (x - pageX));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue