Compare commits

..

17 Commits

Author SHA1 Message Date
srinivaspendem 93490f518d improvement: export icons update 2023-08-22 19:54:15 +05:30
srinivaspendem b140f53a8f Merge branch 'develop' of https://github.com/makeplane/plane into feat/csv_exporter 2023-08-22 19:52:26 +05:30
srinivaspendem 678e20074b Merge branch 'develop' of https://github.com/makeplane/plane into feat/csv_exporter 2023-08-22 17:40:42 +05:30
srinivaspendem 73d034f74d Merge branch 'develop' of https://github.com/makeplane/plane into feat/csv_exporter 2023-08-21 19:03:46 +05:30
srinivaspendem dd4da61042 Merge branch 'develop' of https://github.com/makeplane/plane into feat/csv_exporter 2023-08-21 12:57:44 +05:30
srinivaspendem b59fd24158 Merge branch 'develop' of https://github.com/makeplane/plane into feat/csv_exporter 2023-08-21 11:47:50 +05:30
srinivaspendem f60db24503 Merge branch 'develop' of https://github.com/makeplane/plane into feat/csv_exporter 2023-08-21 11:45:15 +05:30
srinivaspendem 93c92bd70e fix: route fix in import and export 2023-08-14 16:08:51 +05:30
srinivaspendem 15e644e64e Merge branch 'develop' of https://github.com/makeplane/plane into feat/csv_exporter 2023-08-14 16:05:22 +05:30
srinivaspendem 62400f3e3d Merge branch 'develop' of https://github.com/makeplane/plane into feat/csv_exporter 2023-08-14 12:43:03 +05:30
srinivaspendem 987806258a Merge branch 'develop' of https://github.com/makeplane/plane into feat/csv_exporter 2023-08-11 21:27:13 +05:30
srinivaspendem 250148c991 improvement: added validation for the expired date 2023-08-11 21:24:28 +05:30
srinivaspendem 664820af59 header change 2023-08-11 16:07:43 +05:30
srinivaspendem b1460d44e8 typo update 2023-08-11 16:02:05 +05:30
srinivaspendem c002a592d1 adding expired state to exports 2023-08-11 15:44:02 +05:30
srinivaspendem b84ca669c6 handeling the export fail 2023-08-11 12:34:15 +05:30
srinivaspendem a1f0b9c253 feat : csv, jason and, xlxs exporter 2023-08-11 11:50:58 +05:30
891 changed files with 1578 additions and 9697 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ module.exports = {
extends: ["custom"],
settings: {
next: {
rootDir: ["web/", "deploy/"],
rootDir: ["apps/*"],
},
},
};
-10
View File
@@ -14,11 +14,6 @@ from plane.db.models import Cycle, CycleIssue, CycleFavorite
class CycleWriteSerializer(BaseSerializer):
def validate(self, data):
if data.get("start_date", None) is not None and data.get("end_date", None) is not None and data.get("start_date", None) > data.get("end_date", None):
raise serializers.ValidationError("Start date cannot exceed end date")
return data
class Meta:
model = Cycle
fields = "__all__"
@@ -40,11 +35,6 @@ class CycleSerializer(BaseSerializer):
started_estimates = serializers.IntegerField(read_only=True)
workspace_detail = WorkspaceLiteSerializer(read_only=True, source="workspace")
project_detail = ProjectLiteSerializer(read_only=True, source="project")
def validate(self, data):
if data.get("start_date", None) is not None and data.get("end_date", None) is not None and data.get("start_date", None) > data.get("end_date", None):
raise serializers.ValidationError("Start date cannot exceed end date")
return data
def get_assignees(self, obj):
members = [
@@ -40,11 +40,6 @@ class ModuleWriteSerializer(BaseSerializer):
"updated_at",
]
def validate(self, data):
if data.get("start_date", None) is not None and data.get("target_date", None) is not None and data.get("start_date", None) > data.get("target_date", None):
raise serializers.ValidationError("Start date cannot exceed target date")
return data
def create(self, validated_data):
members = validated_data.pop("members_list", None)
+85
View File
@@ -0,0 +1,85 @@
{
"name": "Plane",
"description": "Plane helps you track your issues, epics, and product roadmaps.",
"repository": "http://github.com/makeplane/plane",
"logo": "https://avatars.githubusercontent.com/u/115727700?s=200&v=4",
"website": "https://plane.so/",
"success_url": "/",
"stack": "heroku-22",
"keywords": [
"plane",
"project management",
"django",
"next"
],
"addons": [
"heroku-postgresql:mini",
"heroku-redis:mini"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python.git"
},
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs#v176"
}
],
"env": {
"EMAIL_HOST": {
"description": "Email host to send emails from",
"value": ""
},
"EMAIL_HOST_USER": {
"description": "Email host to send emails from",
"value": ""
},
"EMAIL_HOST_PASSWORD": {
"description": "Email host to send emails from",
"value": ""
},
"EMAIL_FROM": {
"description": "Email Sender",
"value": ""
},
"EMAIL_PORT": {
"description": "The default Email PORT to use",
"value": "587"
},
"AWS_REGION": {
"description": "AWS Region to use for S3",
"value": "false"
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS Access Key ID to use for S3",
"value": ""
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS Secret Access Key to use for S3",
"value": ""
},
"AWS_S3_BUCKET_NAME": {
"description": "AWS Bucket Name to use for S3",
"value": ""
},
"SENTRY_DSN": {
"description": "",
"value": ""
},
"WEB_URL": {
"description": "Web URL for Plane this will be used for redirections in the emails",
"value": ""
},
"GITHUB_CLIENT_SECRET": {
"description": "Github Client Secret",
"value": ""
},
"NEXT_PUBLIC_API_BASE_URL": {
"description": "Next Public API Base URL",
"value": ""
},
"SECRET_KEY": {
"description": "Django Secret Key",
"value": ""
}
}
}
+7
View File
@@ -0,0 +1,7 @@
module.exports = {
root: true,
extends: ["custom"],
rules: {
"@next/next/no-img-element": "off",
},
};
+11
View File
@@ -0,0 +1,11 @@
FROM node:18-alpine
RUN apk add --no-cache libc6-compat
# Set working directory
WORKDIR /app
COPY . .
RUN yarn global add turbo
RUN yarn install
EXPOSE 3000
CMD ["yarn","dev"]

Some files were not shown because too many files have changed in this diff Show More