Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/Atesmaps/atesmaps-api in…
Browse files Browse the repository at this point in the history
…to develop
  • Loading branch information
Rcalaf committed Dec 5, 2024
2 parents 2c3269b + 0b2648f commit 9052dfa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions controllers/authController.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,15 +275,15 @@ const handleAppleLogin = async (req, res) => {
}

const showVersion = (req, res) => {
res.status(200).json({ 'version': '1.0.1' });
res.status(200).json({ 'version': '1.0.2' });
}

const showIosVersion = (req, res) => {
res.status(200).json({ 'version': '1.1.2' });
res.status(200).json({ 'version': '1.1.4' });
}

const showAndroidVersion = (req, res) => {
res.status(200).json({ 'version': '3.0' });
res.status(200).json({ 'version': '3.1' });
}

module.exports = { handleLogin, handleGoogleLogin, handleAppleLogin, showVersion, showIosVersion, showAndroidVersion};

0 comments on commit 9052dfa

Please sign in to comment.