summaryrefslogtreecommitdiff
path: root/src/models
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-07-26 11:04:07 +0900
committerGitHub <noreply@github.com>2020-07-26 11:04:07 +0900
commitf1ef85b63625edccd717dda8324078c232c7750e (patch)
tree2681f8f5057a9608dd9be943f486ebdfb81717e4 /src/models
parentUpdate CONTRIBUTING.md (diff)
downloadmisskey-f1ef85b63625edccd717dda8324078c232c7750e.tar.gz
misskey-f1ef85b63625edccd717dda8324078c232c7750e.tar.bz2
misskey-f1ef85b63625edccd717dda8324078c232c7750e.zip
feat(server): Fetch icon url of an instance (#6591)
* feat(server): Fetch icon url of an instance Resolve #6589 * chore: Rename the function
Diffstat (limited to 'src/models')
-rw-r--r--src/models/entities/instance.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/models/entities/instance.ts b/src/models/entities/instance.ts
index fe620887d2..5fedfc0956 100644
--- a/src/models/entities/instance.ts
+++ b/src/models/entities/instance.ts
@@ -158,6 +158,11 @@ export class Instance {
})
public maintainerEmail: string | null;
+ @Column('varchar', {
+ length: 256, nullable: true, default: null,
+ })
+ public iconUrl: string | null;
+
@Column('timestamp with time zone', {
nullable: true,
})