Skip to content

Commit

Permalink
Merge pull request #187 from KU-niverse/develop
Browse files Browse the repository at this point in the history
fix: 추천 검색어 12개로 변경
  • Loading branch information
youngsupchoi authored Nov 6, 2024
2 parents b824b1c + eb510f2 commit ebeb8df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions models/searchModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ async function postSearch(user_id, keyword) {
AND TIMESTAMPDIFF(MINUTE, search_time, NOW()) <= 10`,
[user_id, keyword]
);

if (isOften[0].length) {
return;
} else{
} else {
const result = await pool.query(
`INSERT INTO search_history (user_id, keyword) VALUES (?, ?)`,
[user_id, keyword]
Expand All @@ -26,9 +26,9 @@ async function getKeywordRank() {
WHERE TIMESTAMPDIFF(DAY, search_time, NOW()) <= 30
GROUP BY keyword
ORDER BY count DESC
LIMIT 5`
LIMIT 12`
);
return rows;
}

module.exports = {postSearch, getKeywordRank};
module.exports = { postSearch, getKeywordRank };

0 comments on commit ebeb8df

Please sign in to comment.