-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
75 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
MYSQL_DB_HOST=localhost | ||
MYSQL_DB_PORT=3310 | ||
MYSQL_DB_USER=root | ||
MYSQL_DB_PASSWORD=root | ||
APP_PORT_BACKEND=8888 | ||
MYSQL_DB_HOST=db | ||
MYSQL_DB_PORT=3311 | ||
MYSQL_DB_UNAME=root | ||
MYSQL_DB_PASSWD=root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# | ||
# Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
# Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
# Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# | ||
# Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
# Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
# Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Affero General Public License as published by | ||
|
@@ -22,11 +22,13 @@ services: | |
|
||
db: | ||
image: mysql:8 | ||
container_name: db | ||
volumes: | ||
- db_data:/var/lib/mysql | ||
restart: always | ||
hostname: db | ||
ports: | ||
- "3310:3306" | ||
- "${MYSQL_DB_PORT}:3306" | ||
environment: | ||
MYSQL_ROOT_PASSWORD: root | ||
MYSQL_DATABASE: twitter | ||
|
@@ -36,17 +38,18 @@ services: | |
twitter-backend: | ||
depends_on: | ||
- db | ||
container_name: twitter-backend | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
ports: | ||
- "8080:8080" | ||
- "${APP_PORT_BACKEND}:8080" | ||
restart: always | ||
environment: | ||
MYSQL_DB_HOST: db | ||
MYSQL_DB_PORT: 3306 | ||
MYSQL_DB_UNAME: root | ||
MYSQL_DB_PASSWD: root | ||
MYSQL_DB_HOST: ${MYSQL_DB_HOST} | ||
MYSQL_DB_PORT: ${MYSQL_DB_PORT} | ||
MYSQL_DB_UNAME: ${MYSQL_DB_UNAME} | ||
MYSQL_DB_PASSWD: ${MYSQL_DB_PASSWD} | ||
|
||
volumes: | ||
db_data: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<!-- | ||
Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<!-- | ||
Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/TwitterBackendApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/config/ApplicationErrorAttributes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
@@ -33,16 +33,16 @@ | |
public class ApplicationErrorController extends BasicErrorController { | ||
|
||
/** | ||
* @param errorAttributes | ||
* @param serverProperties | ||
* @param errorAttributes ErrorAttributes | ||
* @param serverProperties ServerProperties | ||
*/ | ||
public ApplicationErrorController( | ||
ErrorAttributes errorAttributes, ServerProperties serverProperties) { | ||
super(errorAttributes, serverProperties.getError()); | ||
} | ||
|
||
/** | ||
* @param request | ||
* @param request HttpServletRequest | ||
* @return ResponseEntity for Errors | ||
*/ | ||
@RequestMapping(produces = MediaType.APPLICATION_JSON_VALUE) | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/controller/FaultyRestController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/controller/HashtagController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/controller/PostController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/controller/UserController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/exception/BadRequestException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/exception/ControllerExceptionHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/exception/ErrorSavingEntityToDatabaseException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/exception/ResourceNotFoundException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/model/AuthenticationRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/model/AuthenticationResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/model/HashtagPostModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/repository/HashtagPostsRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/repository/HashtagsRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/repository/LikesRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/repository/PostsRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/repository/UsersRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/service/HashtagService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/service/impl/HashtagServiceImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/service/impl/PostServiceImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/xyz/subho/clone/twitter/service/impl/UserServiceImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Twitter Backend - Moo: Twitter Clone Application Backend by Scaler | ||
* Copyright © 2021 Subhrodip Mohanta ([email protected]) | ||
* Copyright © 2021-2023 Subhrodip Mohanta ([email protected]) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
Oops, something went wrong.