postit: persist settings save and apply ApiUrl changes without restart #51

Merged
notazof merged 25 commits from feat/estimate into main 2026-09-06 21:05:58 +01:00
22 changed files with 48 additions and 4 deletions
Showing only changes of commit 6a358d9f78 - Show all commits

abstract: enable nullable annotations in legacy files
All checks were successful
Dotnet build and test / build (pull_request) Successful in 10m16s

Paul Schneider 2026-09-06 15:50:40 +01:00
Signed by: notazof
GPG key ID: 1DD5D838E5343B06

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using Yavsc.Services; using Yavsc.Services;
namespace Yavsc.Billing namespace Yavsc.Billing

View file

@ -1,3 +1,5 @@
#nullable enable annotations
namespace Yavsc.Blogspot; namespace Yavsc.Blogspot;
/// <summary> /// <summary>

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using Yavsc.Abstract.Identity.Security; using Yavsc.Abstract.Identity.Security;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;

View file

@ -1,3 +1,5 @@
#nullable enable annotations

View file

@ -1,3 +1,5 @@
#nullable enable annotations
namespace Yavsc.Abstract.Chat namespace Yavsc.Abstract.Chat
{ {
public static class ChatHubConstants public static class ChatHubConstants

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
namespace Yavsc.Abstract.Chat namespace Yavsc.Abstract.Chat

View file

@ -1,4 +1,6 @@
using System.Text; #nullable enable annotations
using System.Text;
using Yavsc.ViewModels.UserFiles; using Yavsc.ViewModels.UserFiles;
namespace Yavsc.Server.Helpers namespace Yavsc.Server.Helpers

View file

@ -1,3 +1,5 @@
#nullable enable annotations
namespace Yavsc.Abstract.Helpers namespace Yavsc.Abstract.Helpers
{ {
public enum ErrorCode { public enum ErrorCode {

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using Yavsc.Server.Helpers; using Yavsc.Server.Helpers;
namespace Yavsc.ViewModels.UserFiles namespace Yavsc.ViewModels.UserFiles

View file

@ -1,3 +1,5 @@
#nullable enable annotations
// //
// GDate.cs // GDate.cs
// //

View file

@ -1,3 +1,5 @@
#nullable enable annotations
// //
// MessageWithPayloadResponse.cs // MessageWithPayloadResponse.cs
// //

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Attributes.Validation; using Yavsc.Attributes.Validation;

View file

@ -1,4 +1,6 @@
namespace Yavsc.Abstract.Identity #nullable enable annotations
namespace Yavsc.Abstract.Identity
{ {
public interface IApplicationUser public interface IApplicationUser
{ {

View file

@ -1,3 +1,5 @@
#nullable enable annotations
namespace Yavsc.Abstract.Identity namespace Yavsc.Abstract.Identity
{ {
/// <summary> /// <summary>

View file

@ -1,4 +1,6 @@
using Yavsc.Abstract.Identity; #nullable enable annotations
using Yavsc.Abstract.Identity;
namespace Yavsc.Interfaces namespace Yavsc.Interfaces
{ {

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using Yavsc.Interfaces; using Yavsc.Interfaces;

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations.Schema;

View file

@ -1,3 +1,5 @@
#nullable enable annotations
// //
// BookQueryEvent.cs // BookQueryEvent.cs
// //

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using Yavsc.Abstract.Identity; using Yavsc.Abstract.Identity;
using Yavsc.Models.Relationship; using Yavsc.Models.Relationship;

View file

@ -1,4 +1,6 @@
// Copyright (C) 2016 Paul Schneider #nullable enable annotations
// Copyright (C) 2016 Paul Schneider
// //
// This file is part of yavsc. // This file is part of yavsc.
// //

View file

@ -1,3 +1,5 @@
#nullable enable annotations
namespace Yavsc.Workflow namespace Yavsc.Workflow
{ {
public interface IPerformerProfile public interface IPerformerProfile

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;